Skip to content

Commit

Permalink
lint: fix detekt violations
Browse files Browse the repository at this point in the history
  • Loading branch information
ragunathjawahar committed Feb 11, 2025
1 parent 550308a commit 196eaa5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ value class MethodDescriptor(private val descriptor: String) {
isArray = true
index++
} else {
throw IllegalArgumentException("Unknown type: $tokenChar")
require(false) { "Unknown type: $tokenChar" }
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

package com.legacycode.eureka.cli.dev.diff

import com.legacycode.eureka.cli.dev.diff.EdgeBundlingGraphExtension.*
import com.legacycode.eureka.cli.dev.diff.EdgeBundlingGraphExtension.Graph
import com.legacycode.eureka.viz.edgebundling.EdgeBundlingGraph
import org.approvaltests.Approvals
import org.junit.jupiter.api.Test
Expand Down

0 comments on commit 196eaa5

Please sign in to comment.