fix wrong javadoc

This commit is contained in:
Sebastian Sdorra
2011-09-29 15:03:19 +02:00
parent 1438579757
commit 6a3a978259

View File

@@ -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<String> 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<String> tags;
}