Skip to content

Commit 8482ef2

Browse files
committed
Fix missing newline
1 parent 515bb13 commit 8482ef2

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
@@ -224,7 +224,8 @@ protected JupiterEngineExecutionContext createExecutionContext(ExecutionRequest
224224
final Constructor<JupiterEngineExecutionContext> constructorV5_12 = JupiterEngineExecutionContext.class
225225
.getConstructor( EngineExecutionListener.class, JupiterConfiguration.class );
226226
return constructorV5_12.newInstance( request.getEngineExecutionListener(), this.getJupiterConfiguration( request ) );
227-
} catch (NoSuchMethodException | InstantiationException | IllegalAccessException | InvocationTargetException e ) {
227+
}
228+
catch (NoSuchMethodException | InstantiationException | IllegalAccessException | InvocationTargetException e) {
228229
// Ignore errors as they are probably due to version mismatches and try the 5.13 way
229230
}
230231

0 commit comments

Comments
 (0)