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