Skip to content

Commit 6e2daea

Browse files
committed
Small cleanup
1 parent 387e7b7 commit 6e2daea

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
.gradle/
33
.idea/
44
build/
5-
target/
5+
target/

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ repositories {
1616
dependencies {
1717
implementation("org.spigotmc:spigot:1.17.1")
1818
testImplementation("org.junit.jupiter:junit-jupiter:5.8.1")
19-
testImplementation("org.mockito:mockito-junit-jupiter:4.0.0")
2019
testImplementation("org.mockito:mockito-inline:4.0.0")
20+
testImplementation("org.mockito:mockito-junit-jupiter:4.0.0")
2121
}
2222

2323
publishing {
@@ -35,4 +35,4 @@ tasks {
3535
useJUnitPlatform()
3636
setForkEvery(1)
3737
}
38-
}
38+
}

src/main/java/com/iridium/iridiumcolorapi/IridiumColorAPI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class IridiumColorAPI {
2525
*
2626
* @since 1.0.0
2727
*/
28-
public static final int VERSION = getVersion();
28+
private static final int VERSION = getVersion();
2929

3030
/**
3131
* Cached result if the server version is after the v1.16 RGB update.

src/test/java/com/iridium/iridiumcolorapi/IridiumColorAPILegacyTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ static void tearDown() {
7878
mockedStatic.close();
7979
}
8080

81-
}
81+
}

src/test/java/com/iridium/iridiumcolorapi/IridiumColorAPITest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ static void tearDown() {
7878
mockedStatic.close();
7979
}
8080

81-
}
81+
}

0 commit comments

Comments
 (0)