Skip to content

Commit

Permalink
Do not use @SuppressWarnings on variables, but on methods (Eclipse bug).
Browse files Browse the repository at this point in the history
Fix for Jackpot.
  • Loading branch information
ansalond committed Dec 21, 2021
1 parent 063adfd commit 7f5027f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -314,9 +314,9 @@ private Map<LLVMSourceSymbol, Object> getLocalVariablesForIndex(Frame frame, int
return values;
}

@SuppressWarnings({"unchecked", "rawtypes"})
private void initializePredecessors() {
if (predecessors == null) {
@SuppressWarnings({"unchecked", "rawtypes"})
ArrayList<Integer>[] result = new ArrayList[infos.length];
for (int i = 0; i < infos.length; i++) {
result[i] = new ArrayList<>(2);
Expand Down

0 comments on commit 7f5027f

Please sign in to comment.