Skip to content

Commit e334280

Browse files
authored
Merge pull request #391 from basil/JENKINS-75532
[JENKINS-75532] Fix compatibility layer
2 parents 9d6e1e8 + 37be364 commit e334280

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/jenkinsci/plugins/workflow/flow/FlowExecution.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ public boolean blocksRestart() {
253253
public /* abstract */ @NonNull Authentication getAuthentication2() {
254254
return Util.ifOverridden(
255255
() -> getAuthentication().toSpring(),
256-
org.acegisecurity.Authentication.class,
256+
FlowExecution.class,
257257
getClass(),
258258
"getAuthentication");
259259
}
@@ -265,7 +265,7 @@ public boolean blocksRestart() {
265265
public /* abstract */ @NonNull org.acegisecurity.Authentication getAuthentication() {
266266
return Util.ifOverridden(
267267
() -> org.acegisecurity.Authentication.fromSpring(getAuthentication2()),
268-
Authentication.class,
268+
FlowExecution.class,
269269
getClass(),
270270
"getAuthentication2");
271271
}

0 commit comments

Comments
 (0)