Skip to content

Commit

Permalink
Remove non-null assertions in AwAnnotator
Browse files Browse the repository at this point in the history
  • Loading branch information
DenWav committed Apr 13, 2022
1 parent 632afe4 commit bbafc31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/platform/mcp/aw/AwAnnotator.kt
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ class AwAnnotator : Annotator {

companion object {

val compatibleByAccessMap = HashMultimap.create<String, String>()!!
val compatibleByTargetMap = HashMultimap.create<String, String>()!!
val compatibleByAccessMap = HashMultimap.create<String, String>()
val compatibleByTargetMap = HashMultimap.create<String, String>()

init {
compatibleByAccessMap.putAll("accessible", setOf("class", "method", "field"))
Expand Down

0 comments on commit bbafc31

Please sign in to comment.