Skip to content

Commit

Permalink
Attempt to fix `com.cloudbees.hudson.plugins.folder.FolderTest#doCrea…
Browse files Browse the repository at this point in the history
…teItem`
  • Loading branch information
basil committed May 29, 2024
1 parent 7ab2633 commit b2a0128
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public int compare(Method m1, Method m2) {
}
});
for (Method m : declaredMethods) {
if (m.isBridge()) {
if (m.isDefault() || m.isBridge()) {
continue;
}
if ((m.getModifiers() & Modifier.PUBLIC) != 0) {
Expand Down

0 comments on commit b2a0128

Please sign in to comment.