Issue #5086 Fix checkstyle in test

Signed-off-by: Jan Bartel <janb@webtide.com>
This commit is contained in:
Jan Bartel 2020-12-01 17:19:46 +01:00
parent 4304c7861c
commit 115a72da65
1 changed files with 1 additions and 4 deletions

View File

@ -38,7 +38,6 @@ import org.hamcrest.Matchers;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
import org.junit.jupiter.api.condition.DisabledOnOs;
import static org.hamcrest.MatcherAssert.assertThat;
@ -127,7 +126,7 @@ public class ScannerTest
@Override
public boolean equals(Object obj)
{
return ((Event)obj)._filename.equals(_filename) && ((Event)obj)._notification == _notification;
return ((Event)obj)._filename.equals(_filename) && ((Event)obj)._notification == _notification;
}
@Override
@ -135,8 +134,6 @@ public class ScannerTest
{
return ("File: " + _filename + ":" + _notification);
}
}
@Test