From: Roland Haeder Date: Thu, 27 Aug 2015 13:34:22 +0000 (+0200) Subject: New jar for new jcore added X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bd698cff7e165ad1dceb60b36724bdc05d46a9ee;p=jfinancials-swing.git New jar for new jcore added Signed-off-by:Roland Häder --- diff --git a/lib/commons-lang3-3.4.jar b/lib/commons-lang3-3.4.jar new file mode 100644 index 0000000..8ec91d4 Binary files /dev/null and b/lib/commons-lang3-3.4.jar differ diff --git a/lib/jcore.jar b/lib/jcore.jar index d75f9b6..68d4537 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/nbproject/project.properties b/nbproject/project.properties index 9f32019..4ee7d12 100644 --- a/nbproject/project.properties +++ b/nbproject/project.properties @@ -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 diff --git a/src/org/mxchange/addressbook/application/AddressbookApplication.java b/src/org/mxchange/addressbook/application/AddressbookApplication.java index 4be3359..4dbd1d0 100644 --- a/src/org/mxchange/addressbook/application/AddressbookApplication.java +++ b/src/org/mxchange/addressbook/application/AddressbookApplication.java @@ -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(); + } } /**