fix javadoc error

This commit is contained in:
Thomas Hughes 2020-08-05 17:39:49 -05:00
parent 621244f8df
commit a6bdf858f2
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: B2D8646423EF5814

View file

@ -3,11 +3,11 @@ package com.superlinter.JavaGood;
FileName : "HelloWorld.java" */ FileName : "HelloWorld.java" */
/** /**
* Represents a good Java file * Represents a good Java file.
*/ */
public static class JavaGood { public static class JavaGood {
// Prints "Hello, World" to the terminal window // Prints "Hello, World" to the terminal window.
private void JavaGood() { private void helloWorld() {
System.out.println("Hello, World"); System.out.println("Hello, World");
} }
} }