From 55d6f0f927cc8deaf99ac2f93a087723b806c67f Mon Sep 17 00:00:00 2001
From: tpylak <tpylak>
Date: Tue, 20 Oct 2009 12:52:34 +0000
Subject: [PATCH] SE-155 minor: undo schema generation

SVN: 13010
---
 .../java/ch/systemsx/cisd/yeastx/utils/JaxbXmlParser.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rtd_yeastx/source/java/ch/systemsx/cisd/yeastx/utils/JaxbXmlParser.java b/rtd_yeastx/source/java/ch/systemsx/cisd/yeastx/utils/JaxbXmlParser.java
index 61f5ff7845d..904fa16438e 100644
--- a/rtd_yeastx/source/java/ch/systemsx/cisd/yeastx/utils/JaxbXmlParser.java
+++ b/rtd_yeastx/source/java/ch/systemsx/cisd/yeastx/utils/JaxbXmlParser.java
@@ -67,7 +67,7 @@ public class JaxbXmlParser<T>
         try
         {
             JAXBContext context = JAXBContext.newInstance(beanClass);
-            debugGenerateXmlSchema(context);
+            // debugGenerateXmlSchema(context);
             return context.createUnmarshaller();
         } catch (JAXBException ex)
         {
@@ -85,7 +85,7 @@ public class JaxbXmlParser<T>
                     public Result createOutput(String namespaceUri, String schemaName)
                             throws IOException
                     {
-                        return new StreamResult(new File("resource", schemaName));
+                        return new StreamResult(new File(".", schemaName));
                     }
                 });
         } catch (IOException ex)
-- 
GitLab