diff --git a/.automation/test/java/java_good_1.java b/.automation/test/java/java_good_1.java index 2d789a3e..ec96e2ce 100644 --- a/.automation/test/java/java_good_1.java +++ b/.automation/test/java/java_good_1.java @@ -1,11 +1,11 @@ /* This is a simple Java program. FileName : "HelloWorld.java". */ -class java_good -{ - // Your program begins with a call to main(). + +package com.super-linter.JavaGood + +public class JavaGood { // Prints "Hello, World" to the terminal window. - public static void main(String args[]) - { + public static void main(String[] args) { System.out.println("Hello, World"); } }