summaryrefslogtreecommitdiffstats
path: root/sched
diff options
context:
space:
mode:
authorBenoit Lamarche <benoitlamarche@google.com>2014-06-24 17:33:48 +0200
committerBenoit Lamarche <benoitlamarche@google.com>2014-06-24 17:39:36 +0200
commitff07cae66ac449aa20033888509b095822031193 (patch)
tree0c13338adcf729da68ec66058f1e1fb73989d3af /sched
parent71e7f8babdf1f41fa517d5060201689dc759672d (diff)
downloadtoolchain_jack-ff07cae66ac449aa20033888509b095822031193.zip
toolchain_jack-ff07cae66ac449aa20033888509b095822031193.tar.gz
toolchain_jack-ff07cae66ac449aa20033888509b095822031193.tar.bz2
Rename InputZipArchive to InputZipRootVDir
This is coherent with OutputZipRootVDir. Change-Id: Id7d9407ac9469ee9abf526051fcc7fec9274c032
Diffstat (limited to 'sched')
-rw-r--r--sched/src/com/android/sched/vfs/zip/InputZipRootVDir.java (renamed from sched/src/com/android/sched/vfs/zip/InputZipArchive.java)4
1 files changed, 2 insertions, 2 deletions
diff --git a/sched/src/com/android/sched/vfs/zip/InputZipArchive.java b/sched/src/com/android/sched/vfs/zip/InputZipRootVDir.java
index 16d9bec..6997599 100644
--- a/sched/src/com/android/sched/vfs/zip/InputZipArchive.java
+++ b/sched/src/com/android/sched/vfs/zip/InputZipRootVDir.java
@@ -35,7 +35,7 @@ import javax.annotation.Nonnull;
/**
* Virtual directory for viewing the content of a zip file.
*/
-public class InputZipArchive extends InputZipVDir implements Closeable, InputRootVDir {
+public class InputZipRootVDir extends InputZipVDir implements Closeable, InputRootVDir {
@Nonnull
public static final char IN_ZIP_SEPARATOR = '/';
@@ -43,7 +43,7 @@ public class InputZipArchive extends InputZipVDir implements Closeable, InputRoo
@Nonnull
private final ZipFile zip;
- public InputZipArchive(@Nonnull File zipFile) throws IOException {
+ public InputZipRootVDir(@Nonnull File zipFile) throws IOException {
super("", zipFile, new ZipEntry(""));
zip = new ZipFile(zipFile);