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 2011/05/02 20:22:01 UTC

svn commit: r1098714 - /db/torque/torque4/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/general/setterMethodEnd.vm

Author: tfischer
Date: Mon May  2 18:22:01 2011
New Revision: 1098714

URL: http://svn.apache.org/viewvc?rev=1098714&view=rev
Log:
use unqualified class names in code

Modified:
    db/torque/torque4/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/general/setterMethodEnd.vm

Modified: db/torque/torque4/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/general/setterMethodEnd.vm
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/general/setterMethodEnd.vm?rev=1098714&r1=1098713&r2=1098714&view=diff
==============================================================================
--- db/torque/torque4/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/general/setterMethodEnd.vm (original)
+++ db/torque/torque4/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/general/setterMethodEnd.vm Mon May  2 18:22:01 2011
@@ -39,7 +39,7 @@
       #if ($foreignColumnElement.getAttribute("primitive") == "true")
         if ($localReferenceFieldName != null && ${localReferenceFieldName}.${foreignColumnGetter}() != v)
       #else
-        if ($localReferenceFieldName != null && !org.apache.commons.lang.ObjectUtils.equals(${localReferenceFieldName}.${foreignColumnGetter}(), v))
+        if ($localReferenceFieldName != null && !ObjectUtils.equals(${localReferenceFieldName}.${foreignColumnGetter}(), v))
       #end
         {
             $localReferenceFieldName = null;



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