Skip to content

Commit c32be71

Browse files
committed
style fix: add @SuppressWarnings("truffle-abstract-export")
1 parent b5ebfea commit c32be71

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/cext/PythonCextBuiltins.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1769,6 +1769,7 @@ private static PythonManagedClass lookupBuiltinTypeWithName(PythonContext contex
17691769
* used like a {@code char*} pointer.
17701770
*/
17711771
@ExportLibrary(InteropLibrary.class)
1772+
@SuppressWarnings("truffle-abstract-export")
17721773
public static final class PMMapWrapper implements TruffleObject {
17731774

17741775
private final PMMap delegate;

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/common/CArrayWrappers.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,7 @@ void toNative(
243243
* used like a {@code char*} pointer.
244244
*/
245245
@ExportLibrary(InteropLibrary.class)
246+
@SuppressWarnings("truffle-abstract-export")
246247
public static final class CByteArrayWrapper extends CArrayWrapper {
247248

248249
public CByteArrayWrapper(byte[] delegate) {

0 commit comments

Comments
 (0)