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 @@ -42,6 +42,7 @@ object MiMaFilters {
42
42
ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.internal.reachCapability" ),
43
43
ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.internal.preview" ),
44
44
ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.unchecked.uncheckedCaptures" ),
45
+ ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.stableNull" ),
45
46
ProblemFilters .exclude[MissingClassProblem ](" scala.quoted.Quotes$reflectModule$ValOrDefDefMethods" ),
46
47
ProblemFilters .exclude[MissingClassProblem ](" scala.runtime.stdLibPatches.language$3$u002E4$" ),
47
48
ProblemFilters .exclude[MissingClassProblem ](" scala.runtime.stdLibPatches.language$3$u002E4$minusmigration$" ),
You can’t perform that action at this time.
0 commit comments