mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 18:43:34 -05:00
fix javadoc error
This commit is contained in:
parent
621244f8df
commit
a6bdf858f2
1 changed files with 3 additions and 3 deletions
|
@ -3,11 +3,11 @@ package com.superlinter.JavaGood;
|
|||
FileName : "HelloWorld.java" */
|
||||
|
||||
/**
|
||||
* Represents a good Java file
|
||||
* Represents a good Java file.
|
||||
*/
|
||||
public static class JavaGood {
|
||||
// Prints "Hello, World" to the terminal window
|
||||
private void JavaGood() {
|
||||
// Prints "Hello, World" to the terminal window.
|
||||
private void helloWorld() {
|
||||
System.out.println("Hello, World");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue