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


##########
maven-scm-api/src/main/java/org/apache/maven/scm/ChangeSet.java:
##########
@@ -466,6 +518,7 @@ public String toString()
     {
         StringBuilder result = new StringBuilder( author == null ? " null " : 
author );
         result.append( "\n" ).append( date == null ? "null " : date.toString() 
).append( "\n" );
+        result.append( "tags:" ).append( getTags() ).append( "\n" );

Review Comment:
   Leave them out when they are empty as we do with other elements. 



##########
maven-scm-providers/maven-scm-provider-hg/src/test/java/org/apache/maven/scm/provider/hg/command/changelog/HgChangeLogCommandTckTest.java:
##########
@@ -44,4 +44,11 @@ public void initRepo()
     {
         HgRepoUtils.initRepo();
     }
+
+    @Override
+    public boolean aTagIsAnExtraCommit()

Review Comment:
   Does not follows beans: is...



-- 
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