From c7a2bf1c519035acf4379be8e3a3bc717db8fa42 Mon Sep 17 00:00:00 2001 From: David Christopher Frogley Date: Mon, 4 Jan 2021 13:54:56 -0700 Subject: [PATCH] formatting; ignore class files --- .gitignore | 3 +++ HelloWorld.java | 11 ++++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index e7bcaed7..79a9e551 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,6 @@ Icon Network Trash Folder Temporary Items .apdisk + +# Ignore Java bytecode files. +*.class diff --git a/HelloWorld.java b/HelloWorld.java index 12b67166..e1009912 100644 --- a/HelloWorld.java +++ b/HelloWorld.java @@ -1,6 +1,7 @@ -public class HelloWorld { - - public static void main(String[] args) { - System.out.println("Hello World! It's me Kathryn!"); +public class HelloWorld +{ + public static void main(final String[] args) + { + System.out.println("Hello, World! It's me, David!"); } -} \ No newline at end of file +}