superlint/.automation/test/jscpd/java_good_1.java

10 lines
207 B
Java
Raw Normal View History

/**
* Represents a good Java file.
*/
public static class JavaGood {
// Prints "Hello, World" to the terminal window.
private void helloWorld() {
System.out.println("Hello, World");
}
}