mirror of https://github.com/apache/lucene.git
- Added a missing RuntimeException throw.
- s/\t/ /g git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149959 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
24fa693cff
commit
ef7ff202fe
|
@ -243,7 +243,7 @@ public final class FSDirectory extends Directory {
|
||||||
try {
|
try {
|
||||||
in.close();
|
in.close();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
// what can we do?
|
throw new RuntimeException("could not close input stream", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (out != null) {
|
if (out != null) {
|
||||||
|
|
Loading…
Reference in New Issue