aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/unix/FilesystemUtils.java
diff options
context:
space:
mode:
authorGravatar Eric Fellheimer <felly@google.com>2015-10-29 21:56:51 +0000
committerGravatar Lukacs Berki <lberki@google.com>2015-10-30 09:47:43 +0000
commit6bc040b7093395186d05ec8532e811376d70e821 (patch)
tree903d19db5a1d82ad4d4400560f1d8783ae2c6313 /src/main/java/com/google/devtools/build/lib/unix/FilesystemUtils.java
parent81ee44275de44599bd1b0c8b5a7054b05da58cdb (diff)
Augment JNI utime() method.
-- MOS_MIGRATED_REVID=106634616
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/unix/FilesystemUtils.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/unix/FilesystemUtils.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/unix/FilesystemUtils.java b/src/main/java/com/google/devtools/build/lib/unix/FilesystemUtils.java
index 0cab41ca4f..2e062a72bb 100644
--- a/src/main/java/com/google/devtools/build/lib/unix/FilesystemUtils.java
+++ b/src/main/java/com/google/devtools/build/lib/unix/FilesystemUtils.java
@@ -211,12 +211,10 @@ public final class FilesystemUtils {
*
* @param path the file whose times to change.
* @param now if true, ignore actime/modtime parameters and use current time.
- * @param actime the file access time in seconds since the UNIX epoch.
* @param modtime the file modification time in seconds since the UNIX epoch.
* @throws IOException if the utime() syscall failed.
*/
- public static native void utime(String path, boolean now,
- int actime, int modtime) throws IOException;
+ public static native void utime(String path, boolean now, int modtime) throws IOException;
/**
* Native wrapper around POSIX mkdir(2) syscall.