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: [email protected]
For additional commands, e-mail: [email protected]