Skip to content

Commit

Permalink
One more Spotless fix attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
vy authored Jul 26, 2024
1 parent 7f7a8bf commit f4ce026
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ private static EventHandler<RingBufferLogEvent> createEventHandler() {
return (EventHandler<RingBufferLogEvent>)
// Avoid using `LoaderUtil`, which might choose an incorrect class loader – see #2768.
Class.forName("org.apache.logging.log4j.core.async.RingBufferLogEventHandler")
.getConstructor()
.newInstance();
.getConstructor()
.newInstance();
} catch (final ReflectiveOperationException | LinkageError e) {
LOGGER.warn("Failed to create event handler for LMAX Disruptor 3.x, trying version 4.x.", e);
}
Expand Down

0 comments on commit f4ce026

Please sign in to comment.