Hibernate5 fix (#1774)
* Reduce logging * Reduce logging * Reduce logging * Reduce logging * Reduce logging * Optimize build * Remove testng from core-java * Fix hibernate tests * Exclude hibernate5 * Fix settest * XStream refactor * Refactor * Refactor
This commit is contained in:
committed by
GitHub
parent
bb1ab4a775
commit
05807aebed
@@ -7,17 +7,14 @@ import com.thoughtworks.xstream.io.json.JsonHierarchicalStreamDriver;
|
||||
public class SimpleXstreamInitializer {
|
||||
|
||||
public XStream getXstreamInstance() {
|
||||
XStream xtreamInstance = new XStream();
|
||||
return xtreamInstance;
|
||||
return new XStream();
|
||||
}
|
||||
|
||||
public XStream getXstreamJettisonMappedInstance() {
|
||||
XStream xstreamInstance = new XStream(new JettisonMappedXmlDriver());
|
||||
return xstreamInstance;
|
||||
return new XStream(new JettisonMappedXmlDriver());
|
||||
}
|
||||
|
||||
public XStream getXstreamJsonHierarchicalInstance() {
|
||||
XStream xstreamInstance = new XStream(new JsonHierarchicalStreamDriver());
|
||||
return xstreamInstance;
|
||||
return new XStream(new JsonHierarchicalStreamDriver());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user