Skip to content
Snippets Groups Projects
Commit cfee2602 authored by Peter Hertkorn's avatar Peter Hertkorn
Browse files

Modify gitignore

parent aa8387bc
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ out/
.apt_generated
.classpath
.factorypath
#.project
.project
.settings
.springBeans
.sts4-cache
......
......@@ -8,3 +8,4 @@ public abstract class Alien {
System.out.println("Ich fliege durch den Weltraum.");
}
}
......@@ -6,3 +6,4 @@ public class AlienMars extends Alien {
System.out.println("Ich bin das Alien vom Mars.");
}
}
......@@ -6,3 +6,4 @@ public class AlienMond extends Alien {
System.out.println("Ich bin das Alien vom Mond.");
}
}
......@@ -13,3 +13,4 @@ public class AlienSimulator {
alien.fliegen();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment