You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by ml...@apache.org on 2011/10/05 17:33:13 UTC

svn commit: r1179265 - /tapestry/tapestry5/trunk/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/symbolparam/services/AppModule.groovy

Author: mlusetti
Date: Wed Oct  5 15:33:13 2011
New Revision: 1179265

URL: http://svn.apache.org/viewvc?rev=1179265&view=rev
Log:
TAP5-1677 Intellij didnt catch the groovy file from refactor

Modified:
    tapestry/tapestry5/trunk/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/symbolparam/services/AppModule.groovy

Modified: tapestry/tapestry5/trunk/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/symbolparam/services/AppModule.groovy
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/symbolparam/services/AppModule.groovy?rev=1179265&r1=1179264&r2=1179265&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/symbolparam/services/AppModule.groovy (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/symbolparam/services/AppModule.groovy Wed Oct  5 15:33:13 2011
@@ -16,13 +16,13 @@ package org.apache.tapestry5.integration
 
 import org.apache.tapestry5.SymbolConstants
 import org.apache.tapestry5.ioc.MappedConfiguration
-import org.apache.tapestry5.ParameterConstants
+import org.apache.tapestry5.ComponentsParametersConstants
 
 class AppModule {
 
     void contributeApplicationDefaults(MappedConfiguration conf)
     {
         conf.add(SymbolConstants.PRODUCTION_MODE, false)
-        conf.add(ParameterConstants.GRID_ROWS_PER_PAGE, 2);
+        conf.add(ComponentsParametersConstants.GRID_ROWS_PER_PAGE, 2);
     }
 }