fix linter errors

This commit is contained in:
Thomas Hughes 2020-08-05 17:04:13 -05:00
parent 59badeabdd
commit 621244f8df
No known key found for this signature in database
GPG key ID: B2D8646423EF5814

View file

@ -1,13 +1,13 @@
package com.superlinter.JavaGood; package com.superlinter.JavaGood;
/* This is a simple Java program. /* This is a simple Java program.
FileName : "HelloWorld.java". */ FileName : "HelloWorld.java" */
/** /**
* Represents a good Java file * Represents a good Java file
*/ */
class JavaGood { public static class JavaGood {
// Prints "Hello, World" to the terminal window. // Prints "Hello, World" to the terminal window
public static void main(final String[] args) { private void JavaGood() {
System.out.println("Hello, World"); System.out.println("Hello, World");
} }
} }