mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 22:20:57 -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;
|
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");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue