Minor cleanups

This commit is contained in:
Erik C. Thauvin 2024-10-26 05:32:17 -07:00
parent 2fd73691c2
commit 11476127f0
Signed by: erik
GPG key ID: 776702A6A2DA330E
2 changed files with 3 additions and 1 deletions

View file

@ -26,6 +26,9 @@ public enum OutputFormat {
public final String label;
/**
* Sets the label of this output format.
*/
OutputFormat(String label) {
this.label = label;
}

View file

@ -38,7 +38,6 @@ import java.util.logging.Logger;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatCode;
class CheckstyleOperationTest {
public static final String SRC_MAIN_JAVA = "src/main/java";
public static final String SRC_TEST_JAVA = "src/test/java";