You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tiles.apache.org by ap...@apache.org on 2010/06/02 12:31:44 UTC

svn commit: r950476 - /tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/context/TilesApplicationContextWrapper.java

Author: apetrelli
Date: Wed Jun  2 10:31:43 2010
New Revision: 950476

URL: http://svn.apache.org/viewvc?rev=950476&view=rev
Log:
TILES-509
Applied patch by Cristian Vasile Mocanu.

Modified:
    tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/context/TilesApplicationContextWrapper.java

Modified: tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/context/TilesApplicationContextWrapper.java
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/context/TilesApplicationContextWrapper.java?rev=950476&r1=950475&r2=950476&view=diff
==============================================================================
--- tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/context/TilesApplicationContextWrapper.java (original)
+++ tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/context/TilesApplicationContextWrapper.java Wed Jun  2 10:31:43 2010
@@ -75,11 +75,11 @@ public class TilesApplicationContextWrap
 
     /** {@inheritDoc} */
     public URL getResource(String path) throws IOException {
-        return getResource(path);
+        return context.getResource(path);
     }
 
     /** {@inheritDoc} */
     public Set<URL> getResources(String path) throws IOException {
-        return getResources(path);
+        return context.getResources(path);
     }
 }