Skip to content

Commit

Permalink
HSEARCH-3776 Fix the visibility of IndexWriterDelegatorImpl#closeAfte…
Browse files Browse the repository at this point in the history
…rFailure

No one should use this except IndexWriterProvider.

Not related to this PR, but while we're at it...
  • Loading branch information
yrodiere committed Apr 20, 2020
1 parent f58fa91 commit 380395b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -145,7 +145,7 @@ void close() throws IOException {
}
}

public void closeAfterFailure(Throwable throwable, Object failingOperation) {
void closeAfterFailure(Throwable throwable, Object failingOperation) {
Exception exceptionToReport = log.uncommittedOperationsBecauseOfFailure( throwable.getMessage(), eventContext, throwable );
try {
close();
Expand Down

0 comments on commit 380395b

Please sign in to comment.