File: reproducible

package info (click to toggle)
mathpiper 0.81f%2Bsvn4469%2Bdfsg3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 36,576 kB
  • sloc: java: 57,479; lisp: 13,721; objc: 1,300; xml: 988; makefile: 114; awk: 95; sh: 38
file content (13 lines) | stat: -rw-r--r-- 629 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
Index: mathpiper/src/org/mathpiper/mpreduce/packagedatastore/PDSOutputStream.java
===================================================================
--- mathpiper.orig/src/org/mathpiper/mpreduce/packagedatastore/PDSOutputStream.java
+++ mathpiper/src/org/mathpiper/mpreduce/packagedatastore/PDSOutputStream.java
@@ -76,7 +76,7 @@ public void close() throws IOException
     pds.f.write(length >> 16);
     pds.f.write(length >> 8);
     pds.f.write(length);
-    long date = new Date().getTime();
+    long date = 0;
     pds.f.write((int)(date >> 56));
     pds.f.write((int)(date >> 48));
     pds.f.write((int)(date >> 40));