Skip to content

Commit e9942d8

Browse files
committed
Fix unused warnings in interfaces within the workspaces package
1 parent f4a7b00 commit e9942d8

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

java-compiler-testing/src/main/java/io/github/ascopes/jct/workspaces/DirectoryBuilder.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* @author Ashley Scopes
2828
* @since 0.0.1
2929
*/
30+
@SuppressWarnings("unused")
3031
@API(since = "0.0.1", status = Status.STABLE)
3132
public interface DirectoryBuilder {
3233

java-compiler-testing/src/main/java/io/github/ascopes/jct/workspaces/FileBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* @since 0.0.1
3131
*/
3232
@API(since = "0.0.1", status = Status.STABLE)
33-
@SuppressWarnings("unused")
33+
@SuppressWarnings({"unused", "UnusedReturnValue"})
3434
public interface FileBuilder {
3535

3636
/**

java-compiler-testing/src/main/java/io/github/ascopes/jct/workspaces/PathRoot.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
* @author Ashley Scopes
3333
* @since 0.0.1
3434
*/
35+
@SuppressWarnings("unused")
3536
@API(since = "0.0.1", status = Status.STABLE)
3637
public interface PathRoot {
3738

0 commit comments

Comments
 (0)