nielsbasjes commented on code in PR #135:
URL: https://github.com/apache/maven-scm/pull/135#discussion_r881494161
##########
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 don't think it matters too much. If I were to change it I would make all
return an unmodifiable list. I would simply leave it like this.
--
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]