summaryrefslogtreecommitdiff
path: root/org.fox.ttcomics/src/main/java/com/github/junrar/UnrarCallback.java
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-10-24 15:08:53 +0400
committerAndrew Dolgov <[email protected]>2014-10-24 15:08:53 +0400
commit3d3e56bc75f19609c7d24238122722b16b1cd160 (patch)
treeae7723cc53cfc46b282712e9783931671a61720a /org.fox.ttcomics/src/main/java/com/github/junrar/UnrarCallback.java
parente83b41e97dc264d562a52e17bd9c185dcd76dcad (diff)
remove unrar library because it sucks
use cardview for comic tiles remove comics list
Diffstat (limited to 'org.fox.ttcomics/src/main/java/com/github/junrar/UnrarCallback.java')
-rw-r--r--org.fox.ttcomics/src/main/java/com/github/junrar/UnrarCallback.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/org.fox.ttcomics/src/main/java/com/github/junrar/UnrarCallback.java b/org.fox.ttcomics/src/main/java/com/github/junrar/UnrarCallback.java
deleted file mode 100644
index 06bc088..0000000
--- a/org.fox.ttcomics/src/main/java/com/github/junrar/UnrarCallback.java
+++ /dev/null
@@ -1,21 +0,0 @@
-package com.github.junrar;
-
-
-/**
- *
- * @author alban
- */
-public interface UnrarCallback {
-
- /**
- * Return <tt>true</tt> if the next volume is ready to be processed,
- * <tt>false</tt> otherwise.
- */
- boolean isNextVolumeReady(Volume nextVolume);
-
- /**
- * This method is invoked each time the progress of the current
- * volume changes.
- */
- void volumeProgressChanged(long current, long total);
-}