Skip to content

Commit 31ec150

Browse files
committed
Linting errors
1 parent 5319433 commit 31ec150

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

__tests__/maven-helloworld/src/main/java/de/muenchen/helloworld/HelloWorld.java

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
package de.muenchen.helloworld;
22

3-
final public class HelloWorld {
3+
/**
4+
* Sample application to execute tests for actions
5+
*/
6+
public final class HelloWorld {
7+
/**
8+
* prevent instantiation
9+
*/
410
private HelloWorld() {
511
// Prevent instantiation
612
}
713

14+
/**
15+
* Main method to execute
16+
*
17+
* @param args any string argument. Will be ignored
18+
*/
819
public static void main(final String[] args) {
920
System.out.println("Hello, World!");
1021
}

__tests__/maven-helloworld/src/main/java/package-info.java renamed to __tests__/maven-helloworld/src/main/java/de/muenchen/helloworld/package-info.java

File renamed without changes.

0 commit comments

Comments
 (0)