]> git.mxchange.org Git - jbonuscard-lib.git/commitdiff
New jar for new jcore added
authorRoland Haeder <roland@mxchange.org>
Thu, 27 Aug 2015 13:34:22 +0000 (15:34 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 27 Aug 2015 13:34:32 +0000 (15:34 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/commons-lang3-3.4.jar [new file with mode: 0644]
lib/jcore.jar
nbproject/project.properties
src/org/mxchange/addressbook/application/AddressbookApplication.java

diff --git a/lib/commons-lang3-3.4.jar b/lib/commons-lang3-3.4.jar
new file mode 100644 (file)
index 0000000..8ec91d4
Binary files /dev/null and b/lib/commons-lang3-3.4.jar differ
index d75f9b63bad3754b5874cc870805afe33c6a3141..68d453786dc73ac35ef528ce3a68a76f5ba2bc4e 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index 9f32019ae0d916cb29ec5243d9a437ff3c0b498d..4ee7d1207a5e93bf82dcf56d008832c1d24869ed 100644 (file)
@@ -31,6 +31,7 @@ dist.javadoc.dir=${dist.dir}/javadoc
 endorsed.classpath=
 excludes=
 file.reference.commons-codec-1.10.jar=lib\\commons-codec-1.10.jar
+file.reference.commons-lang3-3.4.jar=lib\\commons-lang3-3.4.jar
 file.reference.log4j-api-2.3.jar=lib/log4j-api-2.3.jar
 file.reference.log4j-core-2.3.jar=lib/log4j-core-2.3.jar
 file.reference.jcore.jar=./lib/jcore.jar
@@ -42,7 +43,8 @@ javac.classpath=\
     ${file.reference.log4j-api-2.3.jar}:\
     ${file.reference.log4j-core-2.3.jar}:\
     ${file.reference.jcore.jar}:\
-    ${file.reference.commons-codec-1.10.jar}
+    ${file.reference.commons-codec-1.10.jar}:\
+    ${file.reference.commons-lang3-3.4.jar}
 # Space-separated list of extra javac options
 javac.compilerargs=-Xlint:deprecation -Xlint:unchecked
 javac.deprecation=true
index 4be3359bdbe5fb7c6a7cbb6d3d62d55fdaed979b..4dbd1d0df62f603e392a0ea1e7b7a085a31f66a7 100644 (file)
@@ -149,8 +149,12 @@ public class AddressbookApplication extends BaseAddressbookSystem implements App
                // Init properties file
                this.initProperties();
 
-               // Init bundle
-               this.initBundle();
+               // Is the bundle initialized?
+               if (!this.isBundledInitialized()) {
+                       // Temporary initialize default bundle
+                       // @TODO The enum Gender uses this
+                       this.initBundle();
+               }
        }
 
        /**