Skip to content

Commit 9f9ac37

Browse files
committed
Sonarqube fixes
1 parent 445823b commit 9f9ac37

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

algorithm-pediatric/src/test/java/com/imsweb/staging/pediatric/PediatricStagingTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
class PediatricStagingTest extends StagingTest {
3939

4040
@BeforeAll
41-
public static void init() {
41+
static void init() {
4242
_STAGING = Staging.getInstance(PediatricDataProvider.getInstance(PediatricVersion.V1_3));
4343
}
4444

lib/src/test/java/com/imsweb/staging/ExternalStagingFileDataProviderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class ExternalStagingFileDataProviderTest extends FileDataProviderTest {
1010
private static Staging _STAGING;
1111

1212
@BeforeAll
13-
public static void setup() throws IOException {
13+
static void setup() throws IOException {
1414
try (InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream("external_algorithm.zip")) {
1515
_STAGING = Staging.getInstance(new ExternalStagingFileDataProvider(is));
1616
}

lib/src/test/java/com/imsweb/staging/StagingFileDataProviderTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
import org.junit.jupiter.api.BeforeAll;
44

5-
public class StagingFileDataProviderTest extends FileDataProviderTest {
5+
class StagingFileDataProviderTest extends FileDataProviderTest {
66

77
private static Staging _STAGING;
88

99
@BeforeAll
10-
public static void setup() {
10+
static void setup() {
1111
_STAGING = Staging.getInstance(new StagingFileDataProvider("testing", "99.99"));
1212
}
1313

0 commit comments

Comments
 (0)