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);
}
}