setProperties() needs to putAll not replace underlying map

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@503 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Jesse McConnell 2009-07-08 20:56:25 +00:00
parent 7c30592582
commit a41fc6a16b
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class PolicyContext
public void setProperties( Map<String,String> properties )
{
this.properties = properties;
this.properties.putAll( properties );
}
public KeyStore getKeystore()