Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/cimxml/sax/node
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv25248/src/org/sblim/cimclient/internal/cimxml/sax/node
Modified Files:
Tag: Experimental
NameSpaceNode.java
Log Message:
2673 NameSpaceNode does not need testCompletness()
Index: NameSpaceNode.java
===================================================================
RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/cimxml/sax/node/NameSpaceNode.java,v
retrieving revision 1.1.2.8
retrieving revision 1.1.2.9
diff -u -d -r1.1.2.8 -r1.1.2.9
--- NameSpaceNode.java 2 Jul 2013 01:55:25 -0000 1.1.2.8
+++ NameSpaceNode.java 26 Sep 2013 20:33:12 -0000 1.1.2.9
@@ -19,6 +19,7 @@
* 2003590 2008-06-30 blaschke-oss Change licensing from CPL to EPL
* 2524131 2009-01-21 raman_arora Upgrade client to JDK 1.5 (Phase 1)
* 2604 2013-07-01 blaschke-oss SAXException messages should contain node name
+ * 2673 2013-09-26 blaschke-oss NameSpaceNode does not need testCompletness()
*/
package org.sblim.cimclient.internal.cimxml.sax.node;
@@ -75,9 +76,8 @@
}
@Override
- public void testCompletness() throws SAXException {
- if (this.iNameSpaceValue == null) throw new SAXException(
- "NAME attribute must contain a value in " + getNodeName() + " node!");
+ public void testCompletness() {
+ // no child
}
/**
|