Skip to content

Commit 12b7306

Browse files
Do not expose constant USE_VARARGS_SHIFT only used for JNA Java -> C communication
1 parent edc3314 commit 12b7306

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/sun/jna/Function.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public interface PostCallRead {
8181
public static final int USE_VARARGS = 0xFF;
8282
/** Offset of USE_VARARGS in call flags */
8383
@java.lang.annotation.Native
84-
public static final int USE_VARARGS_SHIFT = 7;
84+
private static final int USE_VARARGS_SHIFT = 7;
8585

8686
static final Integer INTEGER_TRUE = Integer.valueOf(-1);
8787
static final Integer INTEGER_FALSE = Integer.valueOf(0);

0 commit comments

Comments
 (0)