diff --git a/core/src/main/java/org/acegisecurity/intercept/web/PathBasedFilterInvocationDefinitionMap.java b/core/src/main/java/org/acegisecurity/intercept/web/PathBasedFilterInvocationDefinitionMap.java index e9959e9582..5f82b80548 100644 --- a/core/src/main/java/org/acegisecurity/intercept/web/PathBasedFilterInvocationDefinitionMap.java +++ b/core/src/main/java/org/acegisecurity/intercept/web/PathBasedFilterInvocationDefinitionMap.java @@ -1,4 +1,4 @@ -/* Copyright 2004 Acegi Technology Pty Limited +/* Copyright 2004, 2005 Acegi Technology Pty Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,7 @@ public class PathBasedFilterInvocationDefinitionMap requestMap.add(new EntryHolder(antPath, attr)); if (logger.isDebugEnabled()) { - logger.debug("Added Ant path: " + antPath + "; attributes: " - + attr.toString()); + logger.debug("Added Ant path: " + antPath + "; attributes: " + attr); } } diff --git a/core/src/main/java/org/acegisecurity/intercept/web/RegExpBasedFilterInvocationDefinitionMap.java b/core/src/main/java/org/acegisecurity/intercept/web/RegExpBasedFilterInvocationDefinitionMap.java index 73d0c344b1..77f683d6b9 100644 --- a/core/src/main/java/org/acegisecurity/intercept/web/RegExpBasedFilterInvocationDefinitionMap.java +++ b/core/src/main/java/org/acegisecurity/intercept/web/RegExpBasedFilterInvocationDefinitionMap.java @@ -1,4 +1,4 @@ -/* Copyright 2004 Acegi Technology Pty Limited +/* Copyright 2004, 2005 Acegi Technology Pty Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -113,7 +113,7 @@ public class RegExpBasedFilterInvocationDefinitionMap if (logger.isDebugEnabled()) { logger.debug("Added regular expression: " + compiledPattern.getPattern().toString() + "; attributes: " - + attr.toString()); + + attr); } } diff --git a/doc/xdocs/changes.xml b/doc/xdocs/changes.xml index 666fede2a7..8bd7cecc08 100644 --- a/doc/xdocs/changes.xml +++ b/doc/xdocs/changes.xml @@ -48,6 +48,7 @@ New WebAuthenticationDetails class now used by processing filters for Authentication.setDetails() Significantly refactor "well-known location model" to authentication processing mechanism and HttpSessionContextIntegrationFilter model Improve Linux and non-Sun JDK (specifically IBM JDK) compatibility + Correct NullPointerException in FilterInvocationDefinitionSource implementations Major CVS repository restructure to support Maven and eliminate libraries