From 6a3a978259651d5bab28d4c24243763b0ce4d281 Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Thu, 29 Sep 2011 15:03:19 +0200 Subject: [PATCH] fix wrong javadoc --- scm-core/src/main/java/sonia/scm/repository/Changeset.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }