File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
library/src/scala/annotation Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 11package scala .annotation
22
33/** An annotation that can be used to mark a mutable field as trackable for nullability.
4- * With explicit nulls, a normal mutable field can be tracked for nullability by flow typing,
4+ * With explicit nulls, a normal mutable field cannot be tracked for nullability by flow typing,
55 * since it can be updated to a null value at the same time.
66 * This annotation will force the compiler to track the field for nullability, as long as the
77 * prefix is a stable path.
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ object MiMaFilters {
4545 ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.internal.reachCapability" ),
4646 ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.internal.preview" ),
4747 ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.unchecked.uncheckedCaptures" ),
48+ ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.stableNull" ),
4849 ProblemFilters .exclude[MissingClassProblem ](" scala.quoted.Quotes$reflectModule$ValOrDefDefMethods" ),
4950 ProblemFilters .exclude[MissingClassProblem ](" scala.runtime.stdLibPatches.language$3$u002E4$" ),
5051 ProblemFilters .exclude[MissingClassProblem ](" scala.runtime.stdLibPatches.language$3$u002E4$minusmigration$" ),
You can’t perform that action at this time.
0 commit comments