We don't control the XML provided by the game makers so don't generate warning

messages if they put bogus shit in their game definition.


git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@477 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2007-11-01 20:50:13 +00:00
parent df7a83bb32
commit 3159f330e8
@@ -145,7 +145,7 @@ public class GameParser
protected void addParameter (String path, Class pclass)
{
_digester.addRule(path, new ObjectCreateRule(pclass));
_digester.addRule(path, new SetPropertyFieldsRule());
_digester.addRule(path, new SetPropertyFieldsRule(false));
_digester.addSetNext(path, "add", Object.class.getName());
}