Skip to content

Commit 233b82f

Browse files
committedSep 25, 2023
Reintroduce suppression
Reviewed-by: mcimadamore
1 parent 68bfce5 commit 233b82f

File tree

1 file changed

+1
-1
lines changed
  • src/java.base/share/classes/jdk/internal/foreign/abi/x64/sysv

1 file changed

+1
-1
lines changed
 

‎src/java.base/share/classes/jdk/internal/foreign/abi/x64/sysv/TypeClass.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ private static List<ArgumentClassImpl>[] groupByEightBytes(GroupLayout group) {
197197
} catch (ArithmeticException e) {
198198
throw new IllegalArgumentException("GroupLayout is too large: " + group, e);
199199
}
200-
@SuppressWarnings({"unchecked"})
200+
@SuppressWarnings({"unchecked", "rawtypes"}) // rawtypes warnings need to be suppressed
201201
List<ArgumentClassImpl>[] groups = new List[nEightbytes];
202202
for (MemoryLayout l : group.memberLayouts()) {
203203
groupByEightBytes(l, offset, groups);

0 commit comments

Comments
 (0)
Please sign in to comment.