Skip to content

Commit 43b5f76

Browse files
Merge pull request #1548 from matthiasblaesing/macos_xattr
Make c.s.j.p.mac.XAttr public
2 parents cf94e00 + 6daa941 commit 43b5f76

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Features
99
--------
1010
* [#1534](https://github.com/java-native-access/jna/pull/1534): Add `GetMethod`, `Put`, `SpawnInstance` to `c.s.j.p.win32.COM.WbemCli#IWbemClassObject` and `ExecMethod` to `c.s.j.p.win32.COM.WbemCli#IWbemServices` - [@faddom](https://github.com/faddom).
1111
* [#1544](https://github.com/java-native-access/jna/pull/1544): Add `GetPriorityClass`, `SetPriorityClass`, `GetThreadPriority`, `SetThreadPriority` and associated constants to `c.s.j.p.win32.Kernel32` - [@dEajL3kA](https://github.com/dEajL3kA).
12+
* [#1548](https://github.com/java-native-access/jna/pull/1548): Make interface `c.s.j.p.mac.XAttr public` - [@matthiasblaesing](https://github.com/matthiasblaesing).
1213

1314
Bug Fixes
1415
---------

contrib/platform/src/com/sun/jna/platform/mac/XAttr.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* JNA wrapper for <sys/xattr.h>
3232
*
3333
*/
34-
interface XAttr extends Library {
34+
public interface XAttr extends Library {
3535

3636
// load from current image
3737
XAttr INSTANCE = Native.load(null, XAttr.class);

0 commit comments

Comments
 (0)