summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormikaelpeltier <mikaelpeltier@google.com>2014-10-14 09:17:14 +0200
committermikaelpeltier <mikaelpeltier@google.com>2014-10-14 09:17:14 +0200
commit5ca6e71cf616d438f32d7d2a4078557d9ed921e5 (patch)
treea3a9fef9e9d6a8c0c92cc0eef8a794fb32ed26cd
parent450e01e84f4f3db76cc5c95a6589e389911e3421 (diff)
downloadtoolchain_jack-5ca6e71cf616d438f32d7d2a4078557d9ed921e5.zip
toolchain_jack-5ca6e71cf616d438f32d7d2a4078557d9ed921e5.tar.gz
toolchain_jack-5ca6e71cf616d438f32d7d2a4078557d9ed921e5.tar.bz2
DirectDir must have DirectoryLocation instead of FileLocation
Change-Id: Ibad2f692f0c3299650b674c4f07c10cecfbdba4e
-rw-r--r--sched/src/com/android/sched/vfs/DirectDir.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sched/src/com/android/sched/vfs/DirectDir.java b/sched/src/com/android/sched/vfs/DirectDir.java
index f42531a..e7583cc 100644
--- a/sched/src/com/android/sched/vfs/DirectDir.java
+++ b/sched/src/com/android/sched/vfs/DirectDir.java
@@ -58,7 +58,7 @@ public class DirectDir extends AbstractVElement implements InputRootVDir, InputO
throw new NotFileOrDirectoryException(new DirectoryLocation(dir));
}
this.dir = dir;
- location = new FileLocation(dir);
+ location = new DirectoryLocation(dir);
this.vfsRoot = vfsRoot;
}