Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for getPrice (0.08 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

            render redundantGetters {
                type('Person').property('nice')
                includeLink()
            }
    
            then:
            outputEquals """
    Type 'Person' property 'nice' has redundant getters: 'getNice()' and 'isNice()'.
    
    Reason: Boolean property 'nice' has both an `is` and a `get` getter.
    
    Possible solutions:
      1. Remove one of the getters.
      2. Annotate one of the getters with @Internal.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
Back to top