Skip to content

Commit 922ee16

Browse files
committed
chore: remove useless Exception in private method signature
1 parent c8969a4 commit 922ee16

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/test/java/scala_maven/LogProcessorUtilsTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ public void jdkSplit() throws Exception {
6969
}
7070

7171
private LevelState assertLevelState(
72-
String input, LevelState previous, Level expectedLevel, String expectedUntilContains)
73-
throws Exception {
72+
String input, LevelState previous, Level expectedLevel, String expectedUntilContains) {
7473
LevelState back = LogProcessorUtils.levelStateOf(input, previous);
7574
assertEquals(expectedLevel, back.level);
7675
assertEquals(expectedUntilContains, back.untilContains);

0 commit comments

Comments
 (0)