diff --git a/.automation/test/java/java_good_1.java b/.automation/test/java/java_good_1.java index 3b9810e5..e2d0d7e3 100644 --- a/.automation/test/java/java_good_1.java +++ b/.automation/test/java/java_good_1.java @@ -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"); } }