From 21bea96825e7a8a134de88e1a64f471d14c50197 Mon Sep 17 00:00:00 2001 From: Antonio Cassano <50021838+antoniocassano84@users.noreply.github.com> Date: Fri, 21 Feb 2020 10:42:00 +0000 Subject: [PATCH] public not necessary --- 05 - A Hello World Program/src/Application.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/05 - A Hello World Program/src/Application.java b/05 - A Hello World Program/src/Application.java index 078aea8..e835204 100644 --- a/05 - A Hello World Program/src/Application.java +++ b/05 - A Hello World Program/src/Application.java @@ -1,7 +1,8 @@ -public class Application { +// A simple "Hello World" program. +class Application { public static void main(String[] args) { System.out.println("Hello World!"); } -} \ No newline at end of file +}