Fix good java file?

This commit is contained in:
Thomas Hughes 2020-08-05 16:14:13 -05:00
parent 3472359b2b
commit 4e725cba04
No known key found for this signature in database
GPG key ID: B2D8646423EF5814

View file

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