]> source.dussan.org Git - jgit.git/commitdiff
Fix typo in RebaseResult#mySatus 85/4885/1
authorTomasz Zarna <Tomasz.Zarna@pl.ibm.com>
Tue, 27 Dec 2011 20:46:19 +0000 (21:46 +0100)
committerTomasz Zarna <Tomasz.Zarna@pl.ibm.com>
Tue, 27 Dec 2011 20:47:44 +0000 (21:47 +0100)
Change-Id: I88d34eec8307231f89343ead06858d1df4ac0886

org.eclipse.jgit/src/org/eclipse/jgit/api/RebaseResult.java

index 07cd8eb20ae97d473208cb146958c8dd42b2c190..e389d9902ab3fb7eaf83297bdb5b27a046b0392a 100644 (file)
@@ -127,14 +127,14 @@ public class RebaseResult {
        static final RebaseResult FAST_FORWARD_RESULT = new RebaseResult(
                        Status.FAST_FORWARD);
 
-       private final Status mySatus;
+       private final Status status;
 
        private final RevCommit currentCommit;
 
        private Map<String, MergeFailureReason> failingPaths;
 
        private RebaseResult(Status status) {
-               this.mySatus = status;
+               this.status = status;
                currentCommit = null;
        }
 
@@ -145,7 +145,7 @@ public class RebaseResult {
         *            current commit
         */
        RebaseResult(RevCommit commit) {
-               mySatus = Status.STOPPED;
+               status = Status.STOPPED;
                currentCommit = commit;
        }
 
@@ -156,7 +156,7 @@ public class RebaseResult {
         *            list of paths causing this rebase to fail
         */
        RebaseResult(Map<String, MergeFailureReason> failingPaths) {
-               mySatus = Status.FAILED;
+               status = Status.FAILED;
                currentCommit = null;
                this.failingPaths = failingPaths;
        }
@@ -165,7 +165,7 @@ public class RebaseResult {
         * @return the overall status
         */
        public Status getStatus() {
-               return mySatus;
+               return status;
        }
 
        /**