Skip to content

Commit f0d9c88

Browse files
committed
Remove invalid suppress unused annotations.
1 parent 36cef82 commit f0d9c88

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

substratevm/src/com.oracle.objectfile/src/com/oracle/objectfile/elf/dwarf/constants/DwarfAttributeValues.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ public interface DwarfAttributeValues {
5454
/*
5555
* DW_AT_Accessibility attribute values.
5656
*/
57-
@SuppressWarnings("unused") byte DW_ACCESS_public = 1;
58-
@SuppressWarnings("unused") byte DW_ACCESS_protected = 2;
59-
@SuppressWarnings("unused") byte DW_ACCESS_private = 3;
57+
byte DW_ACCESS_public = 1;
58+
byte DW_ACCESS_protected = 2;
59+
byte DW_ACCESS_private = 3;
6060
/*
6161
* DW_AT_encoding attribute values
6262
*/

substratevm/src/com.oracle.objectfile/src/com/oracle/objectfile/elf/dwarf/constants/DwarfForms.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public interface DwarfForms {
4040
int DW_FORM_ref_addr = 0x10;
4141
@SuppressWarnings("unused") int DW_FORM_ref1 = 0x11;
4242
@SuppressWarnings("unused") int DW_FORM_ref2 = 0x12;
43-
@SuppressWarnings("unused") int DW_FORM_ref4 = 0x13;
43+
int DW_FORM_ref4 = 0x13;
4444
@SuppressWarnings("unused") int DW_FORM_ref8 = 0x14;
4545
int DW_FORM_sec_offset = 0x17;
4646
int DW_FORM_data1 = 0x0b;

0 commit comments

Comments
 (0)