diff --git a/scm-core/src/main/java/sonia/scm/repository/Changeset.java b/scm-core/src/main/java/sonia/scm/repository/Changeset.java index 1252920b24..fb965c248e 100644 --- a/scm-core/src/main/java/sonia/scm/repository/Changeset.java +++ b/scm-core/src/main/java/sonia/scm/repository/Changeset.java @@ -436,7 +436,7 @@ public class Changeset extends BasicPropertiesAware /** The author of the changeset */ private Person author; - /** The tags associated with the changeset */ + /** The name of the branches on which the changeset was committed. */ private List branches; /** The date when the changeset was committed */ @@ -452,6 +452,6 @@ public class Changeset extends BasicPropertiesAware @XmlElement(name = "modifications") private Modifications modifications; - /** The name of the branches on which the changeset was committed. */ + /** The tags associated with the changeset */ private List tags; }