Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NullabilityBreakingChangesRule (0.1 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)
Back to top