mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-02-08 07:39:15 +01:00
fix deserialization of changeset modifications
This commit is contained in:
@@ -259,17 +259,17 @@ public class Modifications implements Serializable
|
||||
//~--- fields ---------------------------------------------------------------
|
||||
|
||||
/** list of added files */
|
||||
@XmlElement(name = "file")
|
||||
@XmlElement(name = "added")
|
||||
@XmlElementWrapper(name = "added")
|
||||
private List<String> added;
|
||||
|
||||
/** list of modified files */
|
||||
@XmlElement(name = "file")
|
||||
@XmlElement(name = "modified")
|
||||
@XmlElementWrapper(name = "modified")
|
||||
private List<String> modified;
|
||||
|
||||
/** list of removed files */
|
||||
@XmlElement(name = "file")
|
||||
@XmlElement(name = "removed")
|
||||
@XmlElementWrapper(name = "removed")
|
||||
private List<String> removed;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user