Skip to content

Commit ba0eed7

Browse files
committed
Fix missing newline
1 parent 14cdc61 commit ba0eed7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hibernate-testing/src/main/java/org/hibernate/testing/bytecode/enhancement/extension/engine/BytecodeEnhancedTestEngine.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,8 @@ protected JupiterEngineExecutionContext createExecutionContext(ExecutionRequest
222222
final Constructor<JupiterEngineExecutionContext> constructorV5_12 = JupiterEngineExecutionContext.class
223223
.getConstructor( EngineExecutionListener.class, JupiterConfiguration.class );
224224
return constructorV5_12.newInstance( request.getEngineExecutionListener(), this.getJupiterConfiguration( request ) );
225-
} catch (NoSuchMethodException | InstantiationException | IllegalAccessException | InvocationTargetException e ) {
225+
}
226+
catch (NoSuchMethodException | InstantiationException | IllegalAccessException | InvocationTargetException e) {
226227
// Ignore errors as they are probably due to version mismatches and try the 5.13 way
227228
}
228229

0 commit comments

Comments
 (0)