summaryrefslogtreecommitdiffstats
path: root/sched
diff options
context:
space:
mode:
authorBenoit Lamarche <benoitlamarche@google.com>2015-04-29 17:24:13 +0200
committerBenoit Lamarche <benoitlamarche@google.com>2015-04-29 17:25:08 +0200
commit6a08cac16dd1975b47a1c6f6a2c35060df58554e (patch)
tree03ecaf5699caa016b6b43cb01c1c823dbd082624 /sched
parent1b30d10825973ffc95b0a40cb672a8609a4808aa (diff)
downloadtoolchain_jack-6a08cac16dd1975b47a1c6f6a2c35060df58554e.zip
toolchain_jack-6a08cac16dd1975b47a1c6f6a2c35060df58554e.tar.gz
toolchain_jack-6a08cac16dd1975b47a1c6f6a2c35060df58554e.tar.bz2
Remove STOPSHIP in InMemoryVDir.list()
I've added a bug to track the issue instead: Bug: 20684998 Change-Id: I4e7f30adb373dd489cc0a119f1e4cbc9315d37fa
Diffstat (limited to 'sched')
-rw-r--r--sched/src/com/android/sched/vfs/InMemoryVDir.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/sched/src/com/android/sched/vfs/InMemoryVDir.java b/sched/src/com/android/sched/vfs/InMemoryVDir.java
index ad6f186..f53e8b9 100644
--- a/sched/src/com/android/sched/vfs/InMemoryVDir.java
+++ b/sched/src/com/android/sched/vfs/InMemoryVDir.java
@@ -116,10 +116,6 @@ abstract class InMemoryVDir extends BaseVDir {
@Override
@Nonnull
public synchronized Collection<? extends BaseVElement> list() {
-// assert !vfs.isClosed();
- // STOPSHIP: There is a problem with this assertion, likely due to PrefixedFS that has a close()
- // method that is not related to the the close() method of the underlying VFS.
-
return Collections.unmodifiableCollection(map.values());
}