Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NullabilityBreakingChangesRule (0.08 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

    import org.objectweb.asm.TypePath
    import org.objectweb.asm.TypeReference
    import org.objectweb.asm.signature.SignatureReader
    import org.objectweb.asm.signature.SignatureVisitor
    
    @CompileStatic
    class NullabilityBreakingChangesRule extends AbstractGradleViolationRule {
    
        enum Nullability {
            NON_NULL, NULLABLE, UNMARKED,
        }
    
        private static final List<String> NULLABLE_ANNOTATIONS = [
            javax.annotation.Nullable,
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Oct 27 09:26:32 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/BinaryCompatibilityHelper.groovy

    import gradlebuild.binarycompatibility.rules.MethodsRemovedInInternalSuperClassRule
    import gradlebuild.binarycompatibility.rules.NewIncubatingAPIRule
    import gradlebuild.binarycompatibility.rules.NullabilityBreakingChangesRule
    import gradlebuild.binarycompatibility.rules.SinceAnnotationRule
    import gradlebuild.binarycompatibility.rules.SinceAnnotationRuleCurrentGradleVersionSetup
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 10:14:25 UTC 2025
    - 5.7K bytes
    - Viewed (0)
Back to top