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/xml/Jaxp.java')
-rw-r--r--plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/xml/Jaxp.java7
1 files changed, 1 insertions, 6 deletions
diff --git a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/xml/Jaxp.java b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/xml/Jaxp.java
index ddb82c0a570..7fbaecb5bd8 100644
--- a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/xml/Jaxp.java
+++ b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/xml/Jaxp.java
@@ -177,7 +177,6 @@ public class Jaxp {
* Obtains the character data for each element in the collection, return as a List. Each entry in the list
* corresponding to the character data for one of the elements in the collection.
*
- * @param elements
*/
public static List<String> getElementsCharacterData(Collection<Element> elements) {
List<String> result = new ArrayList<String>(elements.size());
@@ -437,11 +436,9 @@ public class Jaxp {
/**
* Adds the XSL style sheet processing instruction to the document.
*
- * @param d
- * @param xslPath
*/
public static void setXslProperty(Document d, String xslPath) {
- ProcessingInstruction xsl = d.createProcessingInstruction("xml-stylesheet", //
+ ProcessingInstruction xsl = d.createProcessingInstruction("xml-stylesheet", //
"type=\"text/xsl\" href=\"" + xslPath + "\"");
d.appendChild(xsl);
}
@@ -449,8 +446,6 @@ public class Jaxp {
/**
* Adds an XML comment to a document
*
- * @param d
- * @param comment
*/
public static void addComment(Document d, String comment) {
d.appendChild(d.createComment(comment));

Back to the top