From 8b64ef016d37da8853695c0a6dbd5a10ae6b4f54 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Thu, 19 Feb 2015 18:55:43 +0100 Subject: directory structure --- .gitignore | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b630aee --- /dev/null +++ b/.gitignore @@ -0,0 +1,73 @@ +# Source: http://www.bmchild.com/2012/06/git-ignore-for-java-eclipse-project.html + +# Directories # +/build/ +/bin/ +target/ + +# OS Files # +.DS_Store + +*.class + +# Package Files # +*.jar +*.war +*.ear +*.db + +###################### +# Windows +###################### + +# Windows image file caches +Thumbs.db + +# Folder config file +Desktop.ini + +###################### +# OSX +###################### + +.DS_Store +.svn + +# Thumbnails +._* + +# Files that might appear on external disk +.Spotlight-V100 +.Trashes + + +###################### +# Eclipse +###################### + +*.pydevproject +.project +.metadata +bin/** +tmp/** +tmp/**/* +*.tmp +*.bak +*.swp +*~.nib +local.properties +.classpath +.settings/ +.loadpath +/src/main/resources/rebel.xml +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# CDT-specific +.cproject + +# PDT-specific +.buildpath -- cgit v1.2.3 From dced6a8b6e3e158eea774a5a3ef7329ab6509611 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Thu, 19 Feb 2015 18:58:40 +0100 Subject: directory structure --- .gitignore | 1 + build.xml | 38 ++++++++++++++++++++++++ src/nl/camilstaps/botleagues/GameController.java | 2 +- 3 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 build.xml (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index b630aee..5bda502 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ # Directories # /build/ /bin/ +/dist/ target/ # OS Files # diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..31b3d59 --- /dev/null +++ b/build.xml @@ -0,0 +1,38 @@ + + + Controls a Botleagues game + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/nl/camilstaps/botleagues/GameController.java b/src/nl/camilstaps/botleagues/GameController.java index 77eea76..1054215 100644 --- a/src/nl/camilstaps/botleagues/GameController.java +++ b/src/nl/camilstaps/botleagues/GameController.java @@ -19,7 +19,7 @@ import java.util.List; public abstract class GameController { /** The contestants in this game */ - List contestants = new ArrayList<>(); + List contestants = new ArrayList(); /** * Add a new contestant -- cgit v1.2.3