Skip to content

Commit

Permalink
Use XStream2 where possible (#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Sep 19, 2023
1 parent 1dab141 commit 9c259eb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
import hudson.tasks.junit.TestResultAction;
import hudson.tasks.junit.TestResultSummary;
import hudson.tasks.junit.TrendTestResultSummary;
import hudson.util.XStream2;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.IOException;
Expand Down Expand Up @@ -941,7 +942,7 @@ static class LocalConnectionSupplier extends ConnectionSupplier {
*/
static class RemoteConnectionSupplier extends ConnectionSupplier implements SerializableOnlyOverRemoting {

private static final XStream XSTREAM = new XStream();
private static final XStream XSTREAM = new XStream2();
private final String databaseXml;

static {
Expand Down

0 comments on commit 9c259eb

Please sign in to comment.