diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/CommitCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/CommitCommand.java index 1f59dfdbd..3ec09d42f 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/CommitCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/CommitCommand.java @@ -112,7 +112,7 @@ protected CommitCommand(Repository repo) { * @throws NoMessageException * when called without specifying a commit message * @throws UnmergedPathException - * when the current index contained unmerged pathes (conflicts) + * when the current index contained unmerged paths (conflicts) * @throws WrongRepositoryStateException * when repository is not in the right state for committing * @throws JGitInternalException diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/MergeCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/MergeCommand.java index 1528e799a..42e1a51ac 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/MergeCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/MergeCommand.java @@ -182,7 +182,7 @@ public MergeResult call() throws NoHeadException, noProblems = merger.merge(headCommit, srcCommit); lowLevelResults = resolveMerger .getMergeResults(); - failingPaths = resolveMerger.getFailingPathes(); + failingPaths = resolveMerger.getFailingPaths(); } else noProblems = merger.merge(headCommit, srcCommit); diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheCheckout.java b/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheCheckout.java index c856d1a7f..25209d982 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheCheckout.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheCheckout.java @@ -107,7 +107,7 @@ public class DirCacheCheckout { private ArrayList toBeDeleted = new ArrayList(); /** - * @return a list of updated pathes and objectIds + * @return a list of updated paths and objectIds */ public Map getUpdated() { return updated; diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/merge/ResolveMerger.java b/org.eclipse.jgit/src/org/eclipse/jgit/merge/ResolveMerger.java index 15309fcef..e5861ec58 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/merge/ResolveMerger.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/merge/ResolveMerger.java @@ -120,7 +120,7 @@ public enum MergeFailureReason { private ObjectId resultTree; - private List unmergedPathes = new ArrayList(); + private List unmergedPaths = new ArrayList(); private List modifiedFiles = new LinkedList(); @@ -128,7 +128,7 @@ public enum MergeFailureReason { private Map> mergeResults = new HashMap>(); - private Map failingPathes = new HashMap(); + private Map failingPaths = new HashMap(); private ObjectInserter oi; @@ -224,7 +224,7 @@ protected boolean mergeImpl() throws IOException { builder = null; } - if (getUnmergedPathes().isEmpty()) { + if (getUnmergedPaths().isEmpty()) { resultTree = dircache.writeTree(oi); return true; } else { @@ -247,7 +247,7 @@ private void checkout() throws NoWorkTreeException, IOException { entry.getValue()); } else { if (!f.delete()) - failingPathes.put(entry.getKey(), + failingPaths.put(entry.getKey(), MergeFailureReason.COULD_NOT_DELETE); } modifiedFiles.add(entry.getKey()); @@ -369,7 +369,7 @@ private boolean processEntry(CanonicalTreeParser base, // Each index entry has to match ours, means: it has to be clean if (nonTree(modeI) && !(tw.idEqual(T_INDEX, T_OURS) && modeO == modeI)) { - failingPathes.put(tw.getPathString(), MergeFailureReason.DIRTY_INDEX); + failingPaths.put(tw.getPathString(), MergeFailureReason.DIRTY_INDEX); return false; } @@ -416,7 +416,7 @@ private boolean processEntry(CanonicalTreeParser base, if (nonTree(modeB)) add(tw.getRawPath(), base, DirCacheEntry.STAGE_1); add(tw.getRawPath(), ours, DirCacheEntry.STAGE_2); - unmergedPathes.add(tw.getPathString()); + unmergedPaths.add(tw.getPathString()); enterSubtree = false; return true; } @@ -424,7 +424,7 @@ private boolean processEntry(CanonicalTreeParser base, if (nonTree(modeB)) add(tw.getRawPath(), base, DirCacheEntry.STAGE_1); add(tw.getRawPath(), theirs, DirCacheEntry.STAGE_3); - unmergedPathes.add(tw.getPathString()); + unmergedPaths.add(tw.getPathString()); enterSubtree = false; return true; } @@ -447,14 +447,14 @@ private boolean processEntry(CanonicalTreeParser base, if (work != null && (!nonTree(work.getEntryRawMode()) || work .isModified(index.getDirCacheEntry(), true))) { - failingPathes.put(tw.getPathString(), + failingPaths.put(tw.getPathString(), MergeFailureReason.DIRTY_WORKTREE); return false; } } if (!contentMerge(base, ours, theirs)) { - unmergedPathes.add(tw.getPathString()); + unmergedPaths.add(tw.getPathString()); } modifiedFiles.add(tw.getPathString()); } @@ -573,15 +573,15 @@ public String[] getCommitNames() { * @return the paths with conflicts. This is a subset of the files listed * by {@link #getModifiedFiles()} */ - public List getUnmergedPathes() { - return unmergedPathes; + public List getUnmergedPaths() { + return unmergedPaths; } /** * @return the paths of files which have been modified by this merge. A * file will be modified if a content-merge works on this path or if * the merge algorithm decides to take the theirs-version. This is a - * superset of the files listed by {@link #getUnmergedPathes()}. + * superset of the files listed by {@link #getUnmergedPaths()}. */ public List getModifiedFiles() { return modifiedFiles; @@ -609,8 +609,8 @@ public Map> getMergeResults() { * a conflict). null is returned if this merge didn't * fail abnormally. */ - public Map getFailingPathes() { - return (failingPathes.size() == 0) ? null : failingPathes; + public Map getFailingPaths() { + return (failingPaths.size() == 0) ? null : failingPaths; } /**