Skip to content

Commit

Permalink
comment some debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
edeso committed Dec 28, 2023
1 parent 46265d4 commit c0407b0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -52,12 +52,12 @@ public synchronized void parse() throws IOException {
}

int itemCount = archive.getNumberOfItems();
Log.d(TAG, "Items in archive: " + itemCount);
//Log.d(TAG, "Items in archive: " + itemCount);
List<ArchiveEntry> entries = new ArrayList<>();
for (int i = 0; i < itemCount; i++) {
String path = archive.getStringProperty(i, PropID.PATH);
boolean isFolder = (boolean) archive.getProperty(i, PropID.IS_FOLDER);
Log.d(TAG, "File " + i + ": " + path + " : " + isFolder);
//Log.d(TAG, "File " + i + ": " + path + " : " + isFolder);
if (isFolder || !Utils.isImage(path))
continue;

0 comments on commit c0407b0

Please sign in to comment.