diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoProject.java b/org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoProject.java index 915066d58..f6d1209cb 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoProject.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoProject.java @@ -252,10 +252,10 @@ public class RepoProject implements Comparable { /** * Add a bunch of copyfile configurations. * - * @param copyfiles + * @param copyFiles */ - public void addCopyFiles(Collection copyfiles) { - this.copyfiles.addAll(copyfiles); + public void addCopyFiles(Collection copyFiles) { + this.copyfiles.addAll(copyFiles); } /** @@ -288,13 +288,13 @@ public class RepoProject implements Comparable { /** * Check if this sub repo is an ancestor of the given path. * - * @param path + * @param thatPath * path to be checked to see if it is within this repository * @return true if this sub repo is an ancestor of the given path. * @since 4.2 */ - public boolean isAncestorOf(String path) { - return path.startsWith(getPathWithSlash()); + public boolean isAncestorOf(String thatPath) { + return thatPath.startsWith(getPathWithSlash()); } @Override