Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Rosenberg2012-06-06 00:09:21 +0000
committerMatthias Sohn2012-06-06 06:44:28 +0000
commitd463571eb6a7d31c9f725838cd91d9ee745731ef (patch)
treeba2831ca978794207cb8d9f93a77c9b2cc470604
parent44361d9b42f843613eb0c1927c7f7d9a3a118523 (diff)
downloadegit-d463571eb6a7d31c9f725838cd91d9ee745731ef.tar.gz
egit-d463571eb6a7d31c9f725838cd91d9ee745731ef.tar.xz
egit-d463571eb6a7d31c9f725838cd91d9ee745731ef.zip
Removed unused private method parameter
Change-Id: Ia165e0ffdf7df88ebb23ab0c3448ce96691e30c1 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/TestProject.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/TestProject.java b/org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/TestProject.java
index 1468b1c8e5..fd8fa5e805 100644
--- a/org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/TestProject.java
+++ b/org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/TestProject.java
@@ -83,8 +83,8 @@ public class TestProject {
public TestProject(final boolean remove, String path, boolean insidews, File workspaceSupplement) throws CoreException {
this.workspaceSupplement = workspaceSupplement;
IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
- IProjectDescription description = createDescription(remove, path,
- insidews, root, workspaceSupplement);
+ IProjectDescription description = createDescription(path, insidews,
+ root, workspaceSupplement);
project = root.getProject(description.getName());
if (remove)
project.delete(true, null);
@@ -106,8 +106,8 @@ public class TestProject {
return workspaceSupplement;
}
- private IProjectDescription createDescription(final boolean remove,
- String path, boolean insidews, IWorkspaceRoot root, File workspaceSupplement) {
+ private IProjectDescription createDescription(String path,
+ boolean insidews, IWorkspaceRoot root, File workspaceSupplement) {
Path ppath = new Path(path);
String projectName = ppath.lastSegment();
URI locationURI;

Back to the top