Skip to content

Commit 2ae15ea

Browse files
committed
Undo white space changes
1 parent a72c743 commit 2ae15ea

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/main/java/com/nordstrom/automation/junit/HookInstallingPlugin.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ public boolean matches(TypeDescription target) {
2323
@Override
2424
public Builder<?> apply(Builder<?> builder, TypeDescription typeDescription) {
2525
return builder.method(isAnnotatedWith(anyOf(Test.class, Before.class, After.class))
26-
.or(isStatic().and(isAnnotatedWith(anyOf(BeforeClass.class, AfterClass.class)))))
27-
.intercept(MethodDelegation.to(MethodInterceptor.class))
28-
.implement(Hooked.class);
26+
.or(isStatic().and(isAnnotatedWith(anyOf(BeforeClass.class, AfterClass.class)))))
27+
.intercept(MethodDelegation.to(MethodInterceptor.class))
28+
.implement(Hooked.class);
2929
}
30+
3031
}

0 commit comments

Comments
 (0)