refactor: Add deprecated readXmlDocument method for OTE backwards compatibility
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 64f2289..6ec2960 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
@@ -391,6 +391,11 @@
       return findElement(e, Arrays.asList(elementPath.split("/")));
    }
 
+   @Deprecated
+   public static Document readXmlDocument(InputStream is) throws ParserConfigurationException, SAXException, IOException {
+      return readXmlDocument(is, "UTF-8");
+   }
+
    public static Document readXmlDocument(InputStream is, String encoding) throws ParserConfigurationException, SAXException, IOException {
       InputSource inputSource = new InputSource(is);
       inputSource.setEncoding(encoding);