Skip to content

Commit

Permalink
fix JavaDoc warnings [unchecked cast]
Browse files Browse the repository at this point in the history
  • Loading branch information
cpoerschke committed Dec 30, 2021
1 parent 099d588 commit 45be4ae
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/org/junit/runners/model/FrameworkMember.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public abstract class FrameworkMember<T extends FrameworkMember<T>> implements
Annotatable {
abstract boolean isShadowedBy(T otherMember);

@SuppressWarnings("unchecked")
T handlePossibleBridgeMethod(List<T> members) {
for (int i = members.size() - 1; i >=0; i--) {
T otherMember = members.get(i);
Expand Down

0 comments on commit 45be4ae

Please sign in to comment.