Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for upgradedMethods (0.18 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java

            return isOldMethod(jApiMethod, upgradedMethods, SETTER_REGEX);
        }
    
        private static boolean isOldGetterOfUpgradedProperty(JApiMethod jApiMethod, Map<AccessorKey, ReplacedAccessor> upgradedMethods) {
            return isOldMethod(jApiMethod, upgradedMethods, GETTER_REGEX);
        }
    
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperty.java

        private final String containingType;
    
        /**
         * Was upgradedMethods originally, but got renamed to upgradedAccessors and then to replacedAccessors
         * can be removed once base version will be the one that also uses 'replacedAccessors'.
         */
        @SerializedName(value = "replacedAccessors", alternate = {"upgradedAccessors", "upgradedMethods"})
        private final List<ReplacedAccessor> replacedAccessors;
    
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 6.2K bytes
    - Viewed (0)
Back to top