You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by jk...@apache.org on 2007/04/30 21:02:00 UTC

svn commit: r533826 - /tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/enhance/ClientIdPropertyWorker.java

Author: jkuhnert
Date: Mon Apr 30 12:01:59 2007
New Revision: 533826

URL: http://svn.apache.org/viewvc?view=rev&rev=533826
Log:
Resolves TAPESTRY-1415. Had no idea javassist had a static expression syntax using # as the reference between field/method and class name.

Modified:
    tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/enhance/ClientIdPropertyWorker.java

Modified: tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/enhance/ClientIdPropertyWorker.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/enhance/ClientIdPropertyWorker.java?view=diff&rev=533826&r1=533825&r2=533826
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/enhance/ClientIdPropertyWorker.java (original)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/enhance/ClientIdPropertyWorker.java Mon Apr 30 12:01:59 2007
@@ -85,7 +85,7 @@
         .append(" if (getPage() == null) { return null; }")
         .append(" String tempId = getSpecifiedId();")
         .append(" if (tempId == null) { return null; }")
-        .append(" return getPage().getRequestCycle().peekUniqueId(org.apache.tapestry.TapestryUtils.convertTapestryIdToNMToken(tempId));")
+        .append(" return getPage().getRequestCycle().peekUniqueId(org.apache.tapestry.TapestryUtils#convertTapestryIdToNMToken(tempId));")
         .append("} else { ");
         
         // else return the existing clientId