Skip to content

Commit bbafc31

Browse files
committed
Remove non-null assertions in AwAnnotator
1 parent 632afe4 commit bbafc31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/kotlin/platform/mcp/aw/AwAnnotator.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ class AwAnnotator : Annotator {
5151

5252
companion object {
5353

54-
val compatibleByAccessMap = HashMultimap.create<String, String>()!!
55-
val compatibleByTargetMap = HashMultimap.create<String, String>()!!
54+
val compatibleByAccessMap = HashMultimap.create<String, String>()
55+
val compatibleByTargetMap = HashMultimap.create<String, String>()
5656

5757
init {
5858
compatibleByAccessMap.putAll("accessible", setOf("class", "method", "field"))

0 commit comments

Comments
 (0)