diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a1c2a23 --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index e3aa152..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -.idea/ diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 7d862fb..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 5c62795..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml deleted file mode 100644 index 797acea..0000000 --- a/.idea/runConfigurations.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/myFirstProject.iml b/myFirstProject.iml deleted file mode 100644 index c90834f..0000000 --- a/myFirstProject.iml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/out/production/myFirstProject/helloWorld.class b/out/production/myFirstProject/helloWorld.class deleted file mode 100644 index be74dca..0000000 Binary files a/out/production/myFirstProject/helloWorld.class and /dev/null differ diff --git a/src/helloWorld.java b/src/helloWorld.java deleted file mode 100644 index 4d1069d..0000000 --- a/src/helloWorld.java +++ /dev/null @@ -1,6 +0,0 @@ -public class helloWorld { - public static void main(String...Arg){ - System.out.println("Hello Java World"); - - } -}