Author: simonetripodi
Date: Sun Sep 4 16:16:55 2011
New Revision: 1165066
URL: http://svn.apache.org/viewvc?rev=1165066&view=rev
Log:
used the getCatalogKey() variant, as suggested in the javadoc
Modified:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/servlet/ServletPathMapper.java
Modified:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/servlet/ServletPathMapper.java
URL:
http://svn.apache.org/viewvc/commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/servlet/ServletPathMapper.java?rev=1165066&r1=1165065&r2=1165066&view=diff
==============================================================================
---
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/servlet/ServletPathMapper.java
(original)
+++
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/servlet/ServletPathMapper.java
Sun Sep 4 16:16:55 2011
@@ -119,7 +119,7 @@ public class ServletPathMapper<C extends
* @since Chain 1.2
*/
protected Catalog getCatalog(C context) {
- Catalog catalog = (Catalog) context.get(getCatalogKey());
+ Catalog catalog = (Catalog) context.get(getCatalogName());
if (catalog == null) {
catalog = super.getCatalog(context);
}