Skip to content

Commit

Permalink
Remove unused test dependencies and clean up comments
Browse files Browse the repository at this point in the history
Commented out an unused dependency in the build script and cleaned up comments in the test file to improve readability and maintainability. This change does not affect the functionality of the tests or the build.
  • Loading branch information
kousen committed Nov 15, 2024
1 parent 98aaa15 commit 348617a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies {

// Make vulnerability issues go away
testImplementation("commons-io:commons-io:2.17.0")
testImplementation("org.eclipse.jetty:jetty-http:12.0.15")
// testImplementation("org.eclipse.jetty:jetty-http:12.0.15")
}

//tasks.withType<JavaCompile>().configureEach {
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/kousenit/lvti/VarTypeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ public void runTwice() {

@Test
void nullProblem() {
// var y = null;
var z = (String) null;
var x = (Void) null;
// var y = null;
System.out.printf("%s, %s%n", x, z);
}

Expand Down

0 comments on commit 348617a

Please sign in to comment.