|
From: Caspian Rychlik-P. <ci...@us...> - 2004-04-30 08:17:33
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/util/model/loaders In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13699/src/java/org/lwjgl/util/model/loaders Modified Files: XMLUtil.java Log Message: Index: XMLUtil.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/util/model/loaders/XMLUtil.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- XMLUtil.java 22 Apr 2004 13:57:48 -0000 1.2 +++ XMLUtil.java 30 Apr 2004 08:17:25 -0000 1.3 @@ -50,7 +50,7 @@ * @return the single child element, or null * @throws Exception if the child is present multiple times */ - public static Element getChild(Element element, String child) throws Exception { + static Element getChild(Element element, String child) throws Exception { NodeList nodes = element.getChildNodes(); Element ret = null; for (int i = 0; i < nodes.getLength(); i ++) { |