From 3472359b2b03d92061c78a9107c80e9d65177dd7 Mon Sep 17 00:00:00 2001 From: Thomas Hughes Date: Wed, 5 Aug 2020 16:04:04 -0500 Subject: [PATCH] Fix good java file? --- .automation/test/java/java_good_1.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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"); } }