Skip to content

Commit

Permalink
Merge pull request #1695 from jenkinsci/serialization
Browse files Browse the repository at this point in the history
Fix `LineRange` serialization alias
  • Loading branch information
uhafner committed Feb 29, 2024
2 parents 63180f5 + 123ab6a commit cb0172f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ protected void configureXStream(final XStream2 xStream) {
xStream.registerConverter(new SeverityConverter());
xStream.alias("lineRange", LineRange.class);
xStream.alias("edu.hm.hafner.analysis.LineRangeList", LineRangeList.class);
xStream.alias("edu.hm.hafner.analysis.LineRange", DuplicationGroup.class);
xStream.alias("edu.hm.hafner.analysis.LineRange", LineRange.class);
xStream.alias("edu.hm.hafner.analysis.parser.dry.DuplicationGroup", DuplicationGroup.class);
xStream.alias("treeString", TreeString.class);
xStream.alias("issue", Issue.class);
Expand Down

0 comments on commit cb0172f

Please sign in to comment.