diff --git a/.asf.yaml b/.asf.yaml index e3a73a41..d99030ee 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -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: "" \ No newline at end of file diff --git a/datasketches-memory-java11/src/test/java/org/apache/datasketches/memory/internal/UtilitiesForTest.java b/datasketches-memory-java11/src/test/java/org/apache/datasketches/memory/internal/UtilitiesForTest.java index ae95e74a..f8c4d384 100644 --- a/datasketches-memory-java11/src/test/java/org/apache/datasketches/memory/internal/UtilitiesForTest.java +++ b/datasketches-memory-java11/src/test/java/org/apache/datasketches/memory/internal/UtilitiesForTest.java @@ -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; }