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 1
1
package scala .annotation
2
2
3
3
/** 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,
5
5
* since it can be updated to a null value at the same time.
6
6
* This annotation will force the compiler to track the field for nullability, as long as the
7
7
* prefix is a stable path.
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ object MiMaFilters {
45
45
ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.internal.reachCapability" ),
46
46
ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.internal.preview" ),
47
47
ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.unchecked.uncheckedCaptures" ),
48
+ ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.stableNull" ),
48
49
ProblemFilters .exclude[MissingClassProblem ](" scala.quoted.Quotes$reflectModule$ValOrDefDefMethods" ),
49
50
ProblemFilters .exclude[MissingClassProblem ](" scala.runtime.stdLibPatches.language$3$u002E4$" ),
50
51
ProblemFilters .exclude[MissingClassProblem ](" scala.runtime.stdLibPatches.language$3$u002E4$minusmigration$" ),
You can’t perform that action at this time.
0 commit comments