WrappableSearcherManager: Wrap long line

Change-Id: I325b67b91a79b0b51a83b13d8474b5999f837895
This commit is contained in:
David Pursehouse
2015-04-14 12:10:02 +09:00
parent 9b389069d5
commit 257acde22e

View File

@@ -204,7 +204,10 @@ final class WrappableSearcherManager extends ReferenceManager<IndexSearcher> {
}
if (unwrapped != reader) {
throw new IllegalStateException("SearcherFactory must wrap the provided reader (got " + searcher.getIndexReader() + " but expected " + reader + ")");
throw new IllegalStateException(
"SearcherFactory must wrap the provided reader (got " +
searcher.getIndexReader() +
" but expected " + reader + ")");
}
success = true;
} finally {