PR:
Obtained from:
Submitted by:
Reviewed by:

diff --git a/src/org/apache/xalan/xsltc/compiler/util/NodeSetDTMType.java b/src/org/apache/xalan/xsltc/compiler/util/NodeSetType.java
similarity index 98%
rename from src/org/apache/xalan/xsltc/compiler/util/NodeSetDTMType.java
rename to src/org/apache/xalan/xsltc/compiler/util/NodeSetType.java
index 2a3657e..1f6ed4a 100644
--- a/src/org/apache/xalan/xsltc/compiler/util/NodeSetDTMType.java
+++ b/src/org/apache/xalan/xsltc/compiler/util/NodeSetType.java
@@ -68,9 +68,8 @@
 import org.apache.xalan.xsltc.compiler.Parser;
 import org.apache.xalan.xsltc.compiler.FlowList;
 
-public final class NodeSetDTMType extends Type {
-
-    protected NodeSetDTMType() {}
+public final class NodeSetType extends Type {
+    protected NodeSetType() {}
 
     public String toString() {
 	return "node-set";
diff --git a/src/org/apache/xalan/xsltc/compiler/util/Type.java b/src/org/apache/xalan/xsltc/compiler/util/Type.java
index 781883b..fe4c2fc 100644
--- a/src/org/apache/xalan/xsltc/compiler/util/Type.java
+++ b/src/org/apache/xalan/xsltc/compiler/util/Type.java
@@ -74,7 +74,7 @@
     public static final Type Int        = new IntType();
     public static final Type Real       = new RealType();
     public static final Type Boolean    = new BooleanType();
-    public static final Type NodeSetDTM = new NodeSetDTMType();
+    public static final Type NodeSet    = new NodeSetType();
     public static final Type String     = new StringType();
     public static final Type ResultTree = new ResultTreeType();
     public static final Type Reference  = new ReferenceType();