Updated to use non-deprecated method signatures.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3254 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2004-11-30 20:03:47 +00:00
parent 5e1b2d16ec
commit d29db7765a
@@ -1,5 +1,5 @@
//
// $Id: FringeConfigurationParser.java,v 1.11 2004/08/27 02:20:08 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -83,7 +83,7 @@ public class FringeConfigurationParser extends CompiledConfigParser
vrule = new ValidatedSetNextRule("addFringeRecord", val) {
// parse the fringe record, converting tileset names to
// tileset ids
public void begin (Attributes attrs)
public void begin (String namespace, String lname, Attributes attrs)
throws Exception
{
FringeRecord frec = (FringeRecord) digester.peek();
@@ -132,7 +132,7 @@ public class FringeConfigurationParser extends CompiledConfigParser
};
vrule = new ValidatedSetNextRule("addTileset", val) {
// parse the fringe tilesetrecord, converting tileset names to ids
public void begin (Attributes attrs)
public void begin (String namespace, String lname, Attributes attrs)
throws Exception
{
FringeTileSetRecord f = (FringeTileSetRecord) digester.peek();