We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68dd194 commit 92a0912Copy full SHA for 92a0912
maven-scm-api/src/main/java/org/apache/maven/scm/ChangeSet.java
@@ -115,7 +115,7 @@ public class ChangeSet
115
* List of ChangeFile
116
*/
117
private List<ChangeFile> files;
118
-
+
119
/**
120
* The SCM revision id for this changeset.
121
* @since 1.3
@@ -470,10 +470,10 @@ public String toString()
470
if ( parentRevision != null )
471
{
472
result.append( "parent: " ).append( parentRevision );
473
- if ( !mergedRevisions.isEmpty() )
+ if ( !getMergedRevisions().isEmpty() )
474
475
result.append( " + " );
476
- result.append( mergedRevisions );
+ result.append( getMergedRevisions() );
477
}
478
result.append( "\n" );
479
0 commit comments