michael-o commented on code in PR #135:
URL: https://github.com/apache/maven-scm/pull/135#discussion_r881536034


##########
maven-scm-api/src/main/java/org/apache/maven/scm/ChangeSet.java:
##########
@@ -414,6 +419,53 @@ public String getTimeFormatted()
         return TIME_FORMAT.format( getDate() );
     }
 
+    /**
+     * Getter for property tags.
+     *
+     * @return Value of property author.
+     */
+    public List<String> getTags()
+    {
+        if ( tags == null )
+        {
+            return Collections.emptyList();

Review Comment:
   I'd just use a mutuable list for consistency. Later, when properly discussed 
immutuable objects should be made immutuable.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to