Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDariusz Luksza2011-05-14 14:04:50 +0000
committerCode Review2011-05-14 14:04:50 +0000
commitf530556c54ae2f118782b39fa287972f0c4f9870 (patch)
tree649e00b3d0f727a88284d478c791e5471248c281 /org.eclipse.egit.ui.test
parentd26c347ca11c24706c15e9f2ca55421cbba6cca5 (diff)
parent51089ecd6eb9caa4af4024157873c1895923fade (diff)
downloadegit-f530556c54ae2f118782b39fa287972f0c4f9870.tar.gz
egit-f530556c54ae2f118782b39fa287972f0c4f9870.tar.xz
egit-f530556c54ae2f118782b39fa287972f0c4f9870.zip
Merge "[findBugs] Do not ignore return value of File methods"
Diffstat (limited to 'org.eclipse.egit.ui.test')
-rw-r--r--org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/view/synchronize/AbstractSynchronizeViewTest.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/view/synchronize/AbstractSynchronizeViewTest.java b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/view/synchronize/AbstractSynchronizeViewTest.java
index 56b7ca0416..656f390cba 100644
--- a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/view/synchronize/AbstractSynchronizeViewTest.java
+++ b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/view/synchronize/AbstractSynchronizeViewTest.java
@@ -207,7 +207,6 @@ public abstract class AbstractSynchronizeViewTest extends
protected void createEmptyRepository() throws Exception {
File gitDir = new File(new File(getTestDirectory(), EMPTY_REPOSITORY),
Constants.DOT_GIT);
- gitDir.mkdir();
Repository myRepository = new FileRepository(gitDir);
myRepository.create();

Back to the top