Skip to content

Commit

Permalink
Merge pull request #1548 from matthiasblaesing/macos_xattr
Browse files Browse the repository at this point in the history
Make c.s.j.p.mac.XAttr public
  • Loading branch information
matthiasblaesing committed Aug 30, 2023
2 parents cf94e00 + 6daa941 commit 43b5f76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -9,6 +9,7 @@ Features
--------
* [#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).
* [#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).
* [#1548](https://github.com/java-native-access/jna/pull/1548): Make interface `c.s.j.p.mac.XAttr public` - [@matthiasblaesing](https://github.com/matthiasblaesing).

Bug Fixes
---------
Expand Down
2 changes: 1 addition & 1 deletion contrib/platform/src/com/sun/jna/platform/mac/XAttr.java
Expand Up @@ -31,7 +31,7 @@
* JNA wrapper for <sys/xattr.h>
*
*/
interface XAttr extends Library {
public interface XAttr extends Library {

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

0 comments on commit 43b5f76

Please sign in to comment.