Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UNMARKED (0.03 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/JSpecifyNullUnmarkedChangesTest.kt

                    "Method com.example.Source.foo(): From non-null returning to null-unmarked returning breaking change.",
                    "Method com.example.Source.baz(): From non-null returning to null-unmarked returning breaking change.",
                )
                assertHasNoWarning()
                assertHasNoInformation()
            }
        }
    
        @Test
        fun `from null-unmarked returning to non-null returning is not breaking`() {
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Oct 27 09:26:32 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

                    errors << "From non-null returning to null-unmarked returning breaking change"
                } else if (oldNullability == Nullability.UNMARKED && newNullability == Nullability.NULLABLE) {
                    errors << "From null-unmarked returning to null returning breaking change"
                } else if (oldNullability == Nullability.UNMARKED && newNullability == Nullability.NON_NULL) {
    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