Browse Source

Fix MERGED_NOT_COMMITTED toString

It had a typo (commited) and was not in the style of the others.

Change-Id: Ia1be1c70b13bb2f3da80c8e8239c5f254070fe60
Signed-off-by: Robin Stocker <robin@nibor.org>
stable-3.1
Robin Stocker 11 years ago
parent
commit
f5be93d003
  1. 2
      org.eclipse.jgit/src/org/eclipse/jgit/api/MergeResult.java

2
org.eclipse.jgit/src/org/eclipse/jgit/api/MergeResult.java

@ -186,7 +186,7 @@ public class MergeResult {
**/
MERGED_NOT_COMMITTED {
public String toString() {
return "MergedNotCommited";
return "Merged-not-committed";
}
@Override

Loading…
Cancel
Save