summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src
diff options
context:
space:
mode:
authorChris Aniszczyk <caniszczyk@gmail.com>2010-09-02 12:10:09 -0400
committerCode Review <codereview-daemon@eclipse.org>2010-09-02 12:10:10 -0400
commit0f5eae53d6ff6ab8390c70232fd238943c264df2 (patch)
tree0ef654c55b45eab638598f3af4b626b6fc80e71a /org.eclipse.jgit/src
parenta2f57dd4913cde87b05c1e62e452bb91e822a6f3 (diff)
parentf714988c61bc188fd5e9ce6a848e4f19690f48a5 (diff)
downloadjgit-0f5eae53d6ff6ab8390c70232fd238943c264df2.tar.gz
jgit-0f5eae53d6ff6ab8390c70232fd238943c264df2.zip
Merge "Fix RepositoryState.MERGING"
Diffstat (limited to 'org.eclipse.jgit/src')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/RepositoryState.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RepositoryState.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RepositoryState.java
index 0a59906e94..e0b5389ac0 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RepositoryState.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RepositoryState.java
@@ -73,11 +73,11 @@ public enum RepositoryState {
public String getDescription() { return JGitText.get().repositoryState_normal; }
},
- /** An unfinished merge. Must resole or reset before continuing normally
+ /** An unfinished merge. Must resolve or reset before continuing normally
*/
MERGING {
public boolean canCheckout() { return false; }
- public boolean canResetHead() { return false; }
+ public boolean canResetHead() { return true; }
public boolean canCommit() { return false; }
public String getDescription() { return JGitText.get().repositoryState_conflicts; }
},