You are viewing a plain text version of this content. The canonical link for it is here.
Posted to torque-dev@db.apache.org by tf...@apache.org on 2010/04/06 21:45:01 UTC

svn commit: r931289 - /db/torque/torque4/trunk/torque-generator/src/main/java/org/apache/torque/gf/configuration/option/OptionsConfigurationBase.java

Author: tfischer
Date: Tue Apr  6 19:45:01 2010
New Revision: 931289

URL: http://svn.apache.org/viewvc?rev=931289&view=rev
Log:
removed unnecessary toString and thus allowing also null values in options

Modified:
    db/torque/torque4/trunk/torque-generator/src/main/java/org/apache/torque/gf/configuration/option/OptionsConfigurationBase.java

Modified: db/torque/torque4/trunk/torque-generator/src/main/java/org/apache/torque/gf/configuration/option/OptionsConfigurationBase.java
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-generator/src/main/java/org/apache/torque/gf/configuration/option/OptionsConfigurationBase.java?rev=931289&r1=931288&r2=931289&view=diff
==============================================================================
--- db/torque/torque4/trunk/torque-generator/src/main/java/org/apache/torque/gf/configuration/option/OptionsConfigurationBase.java (original)
+++ db/torque/torque4/trunk/torque-generator/src/main/java/org/apache/torque/gf/configuration/option/OptionsConfigurationBase.java Tue Apr  6 19:45:01 2010
@@ -57,7 +57,7 @@ abstract class OptionsConfigurationBase 
         {
             Option option = new OptionImpl(
                     entry.getKey().toString(),
-                    entry.getValue().toString());
+                    entry.getValue());
             options.add(option);
             if (log.isTraceEnabled())
             {



---------------------------------------------------------------------
To unsubscribe, e-mail: torque-dev-unsubscribe@db.apache.org
For additional commands, e-mail: torque-dev-help@db.apache.org