Skip to content
Snippets Groups Projects
Commit 55d6f0f9 authored by tpylak's avatar tpylak
Browse files

SE-155 minor: undo schema generation

SVN: 13010
parent 5d9b878d
No related branches found
No related tags found
No related merge requests found
...@@ -67,7 +67,7 @@ public class JaxbXmlParser<T> ...@@ -67,7 +67,7 @@ public class JaxbXmlParser<T>
try try
{ {
JAXBContext context = JAXBContext.newInstance(beanClass); JAXBContext context = JAXBContext.newInstance(beanClass);
debugGenerateXmlSchema(context); // debugGenerateXmlSchema(context);
return context.createUnmarshaller(); return context.createUnmarshaller();
} catch (JAXBException ex) } catch (JAXBException ex)
{ {
...@@ -85,7 +85,7 @@ public class JaxbXmlParser<T> ...@@ -85,7 +85,7 @@ public class JaxbXmlParser<T>
public Result createOutput(String namespaceUri, String schemaName) public Result createOutput(String namespaceUri, String schemaName)
throws IOException throws IOException
{ {
return new StreamResult(new File("resource", schemaName)); return new StreamResult(new File(".", schemaName));
} }
}); });
} catch (IOException ex) } catch (IOException ex)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment