Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion .asf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,3 @@ notifications:
pullrequests: dev@datasketches.apache.org
# Setting jobs to an empty string completely silences
# GitHub Actions success/failure emails to the dev list.
jobs: ""
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,7 @@ public static File getResourceFile(final String resourceName) {
// Use REPLACE_EXISTING to avoid "File Already Exists" errors on Windows retries
Files.copy(in, tempFile.toPath(), StandardCopyOption.REPLACE_EXISTING);
} catch (final IOException e) { throw new IllegalArgumentException(e); }

// Final Windows Fix: Ensure the file is actually writable if you need to setReadOnly later
//tempFile.setWritable(true);


return tempFile;
}

Expand Down