LUCENE-3057: removed false return statement

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1098375 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Simon Willnauer 2011-05-01 17:43:30 +00:00
parent d3c5769911
commit 0528549d17
1 changed files with 0 additions and 1 deletions

View File

@ -1057,7 +1057,6 @@ public abstract class LuceneTestCase extends Assert {
// LockFactory too, so setting it afterwards.
Constructor<? extends FSDirectory> ctor = clazz.getConstructor(File.class);
d = ctor.newInstance(file);
return d;
} catch (Exception e) {
d = FSDirectory.open(file);
}