Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/AXml.java')
-rw-r--r--plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/AXml.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/AXml.java b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/AXml.java
index fcad6b153ec..808c963dc9f 100644
--- a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/AXml.java
+++ b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/AXml.java
@@ -40,10 +40,6 @@ public class AXml {
return addTagData(elementName, data, false);
}
- public static String addTagData(String elementName, Integer[] data, String separator) {
- return addTagData(elementName, Collections.toString(separator, data), false);
- }
-
public static String addTagData(String elementName, Collection<Integer> data, String separator) {
return addTagData(elementName, Collections.toString(separator, data), false);
}

Back to the top