File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
xstream-distribution/src/content
xstream/src/java/com/thoughtworks/xstream Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ <h2>Minor changes</h2>
9898 < ul >
9999 < li > XmlFriendlyNameCoder supports now XML parsers implementing only 4th edition of XML 1.0 specification.</ li >
100100 < li > Fix support of CDATA events in StAX.</ li >
101+ < li > GHI:#171: XStream.createObjectInputStream does not pass the DataHolder.</ li >
101102 < li > GHI:#151: Use of SPDX license identifier in POM and Manifest.</ li >
102103 < li > GHI:#152: Declare OSGi import of internal runtime packages as optional.</ li >
103104 < li > Drop Require-Capability entry in manifest.</ li >
Original file line number Diff line number Diff line change @@ -2007,7 +2007,7 @@ public Object readFromStream() throws EOFException {
20072007 throw new EOFException ();
20082008 }
20092009 reader .moveDown ();
2010- final Object result = unmarshal (reader , dataHolder );
2010+ final Object result = unmarshal (reader , null , dataHolder );
20112011 reader .moveUp ();
20122012 return result ;
20132013 }
You can’t perform that action at this time.
0 commit comments