Skip to content

Commit

Permalink
Set protected access to the isPosix boolean for the unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
besidev committed Oct 3, 2024
1 parent 5523dcf commit e3981f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public final class FileStorage {
/**
* Determines if the default file system supports POSIX file attribute views.
*/
private static final boolean isPosix = FileSystems.getDefault().supportedFileAttributeViews().contains("posix");
static final boolean isPosix = FileSystems.getDefault().supportedFileAttributeViews().contains("posix");

/**
* The directory path to store temporary files. Defaults to a 'tmp' directory within a '.jpro' directory
Expand Down

0 comments on commit e3981f4

Please sign in to comment.