mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-08-31 09:32:01 +02:00
Removed unneeded debug info
This commit is contained in:
@@ -113,7 +113,6 @@ public class BatoRipper extends AbstractHTMLRipper {
|
|||||||
s = s.replaceAll("var prevCha = null;", "");
|
s = s.replaceAll("var prevCha = null;", "");
|
||||||
s = s.replaceAll("var nextCha = \\.*;", "");
|
s = s.replaceAll("var nextCha = \\.*;", "");
|
||||||
String json = s.replaceAll("var images = ", "").replaceAll(";", "");
|
String json = s.replaceAll("var images = ", "").replaceAll(";", "");
|
||||||
LOGGER.info(s);
|
|
||||||
JSONObject images = new JSONObject(json);
|
JSONObject images = new JSONObject(json);
|
||||||
for (int i = 1; i < images.length() +1; i++) {
|
for (int i = 1; i < images.length() +1; i++) {
|
||||||
result.add(images.getString(Integer.toString(i)));
|
result.add(images.getString(Integer.toString(i)));
|
||||||
|
Reference in New Issue
Block a user