removed unused variable and function

This commit is contained in:
C. Albert 2013-01-07 14:53:09 -08:00
parent 2d8061a329
commit c1b23c3d5d
2 changed files with 0 additions and 12 deletions

View File

@ -63,7 +63,6 @@ public class MegaTokyo extends IndexedComic {
String str;
String final_str = null;
String final_title = null;
String final_title1 = null;
String final_itext = null;
while ((str = reader.readLine()) != null) {
int index1 = str.indexOf("<img align=\"middle\" src=\"strips/");

View File

@ -117,17 +117,6 @@ public class MenageA3 extends ArchivedComic {
return vol_urls;
}
private int countOccurrences(String str, String pattern) {
Pattern p = Pattern.compile(pattern);
Matcher m = p.matcher(str);
int count = 0;
while (m.find()) {
count += 1;
}
return count;
}
@Override
protected String getLatestStripUrl() {
fetchAllComicUrls();