summaryrefslogtreecommitdiffstats
path: root/jack/src/com/android/jack/library/OutputLibrary.java
diff options
context:
space:
mode:
authorBenoit Lamarche <benoitlamarche@google.com>2015-05-29 12:56:28 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-05-29 12:56:29 +0000
commite69b762d0712168bad4ffda22991064470efcabd (patch)
treed3b49a78e9d7176ad1f3007eaf131af0ca7458b5 /jack/src/com/android/jack/library/OutputLibrary.java
parentba3810e3267e8a899ac305b6c803e43ef513340f (diff)
parent6007144b3ab9a8c59648fa35a0af920d2a64356e (diff)
downloadtoolchain_jack-e69b762d0712168bad4ffda22991064470efcabd.zip
toolchain_jack-e69b762d0712168bad4ffda22991064470efcabd.tar.gz
toolchain_jack-e69b762d0712168bad4ffda22991064470efcabd.tar.bz2
Merge "Add support to append in VFS" into ub-jack-brest
Diffstat (limited to 'jack/src/com/android/jack/library/OutputLibrary.java')
-rw-r--r--jack/src/com/android/jack/library/OutputLibrary.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/jack/src/com/android/jack/library/OutputLibrary.java b/jack/src/com/android/jack/library/OutputLibrary.java
index 1e54346..f365d8a 100644
--- a/jack/src/com/android/jack/library/OutputLibrary.java
+++ b/jack/src/com/android/jack/library/OutputLibrary.java
@@ -18,6 +18,7 @@ package com.android.jack.library;
import com.android.sched.util.file.CannotCreateFileException;
import com.android.sched.util.file.CannotDeleteFileException;
+import com.android.sched.vfs.InputOutputVFile;
import com.android.sched.vfs.InputVFile;
import com.android.sched.vfs.OutputVFile;
import com.android.sched.vfs.VPath;
@@ -46,7 +47,7 @@ public interface OutputLibrary extends Library {
public Iterator<InputVFile> iterator(@Nonnull FileType fileType);
@Nonnull
- public InputVFile getFile(@Nonnull FileType fileType, @Nonnull VPath typePath)
+ public InputOutputVFile getFile(@Nonnull FileType fileType, @Nonnull VPath typePath)
throws FileTypeDoesNotExistException;
@Nonnull