From 4285b5276e2d3a05294b4247f9ea82e7a033a07d Mon Sep 17 00:00:00 2001 From: Brian Carlstrom Date: Mon, 26 Nov 2012 11:34:17 -0800 Subject: Move comment to match code Followup for change "Lazy parsing of zip files for Java resources." Change-Id: Ic572dff0edda766400ce6cea9fb27344373c73df --- dalvik/src/main/java/dalvik/system/DexPathList.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'dalvik') diff --git a/dalvik/src/main/java/dalvik/system/DexPathList.java b/dalvik/src/main/java/dalvik/system/DexPathList.java index 3b4c100..728639b 100644 --- a/dalvik/src/main/java/dalvik/system/DexPathList.java +++ b/dalvik/src/main/java/dalvik/system/DexPathList.java @@ -383,11 +383,6 @@ import static libcore.io.OsConstants.*; init = true; if (zip == null) { - /* - * Either this element has no zip/jar file (first - * clause), or the zip/jar file doesn't have an entry - * for the given name (second clause). - */ return; } @@ -409,6 +404,11 @@ import static libcore.io.OsConstants.*; maybeInit(); if (zipFile == null || zipFile.getEntry(name) == null) { + /* + * Either this element has no zip/jar file (first + * clause), or the zip/jar file doesn't have an entry + * for the given name (second clause). + */ return null; } -- cgit v1.1