Add constructer fo fix broken test (suspect someone hasn't pushed)

This commit is contained in:
Jesse McConnell 2013-06-14 14:00:41 -05:00
parent f8e0764fa5
commit 6c44b290a9
1 changed files with 5 additions and 0 deletions

View File

@ -83,6 +83,11 @@ public class UrlEncoded extends MultiMap<String> implements Cloneable
{
}
public UrlEncoded(String query)
{
decodeTo(query,this,ENCODING,-1);
}
/* ----------------------------------------------------------------- */
public void decode(String query)
{