Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion io/src/main/java/org/apache/pdfbox/io/IOUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
import java.nio.ByteBuffer;
import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.LinkOption;
import java.nio.file.Path;
import java.nio.file.attribute.AclEntry;
import java.nio.file.attribute.AclEntryPermission;
Expand Down Expand Up @@ -486,7 +487,7 @@ public static Path createProtectedTempFile(Path dir, String prefix, String suffi
* @throws IOException if an I/O error occurs while setting POSIX permissions or accessing the file
* @throws SecurityException if a security manager is installed and denies access to the file
* @see Files#setPosixFilePermissions(Path, Set)
* @see Files#getFileAttributeView(Path, Class)
* @see Files#getFileAttributeView(Path, Class, LinkOption[])
*/
private static void applyOwnerOnlyPermissions(Path path, boolean isDirectory) throws IOException
{
Expand Down