1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-07-31 02:50:15 +02:00

Fix unused warning in ImagebamRipper.java

This commit is contained in:
MetaPrime
2025-02-01 23:52:12 -08:00
parent e0dfead88c
commit bf485af30e

View File

@@ -143,9 +143,6 @@ public class ImagebamRipper extends AbstractHTMLRipper {
.get();
// Find image
@SuppressWarnings("unused")
Elements metaTags = doc.getElementsByTag("meta");
String imgsrc = "";//initialize, so no NullPointerExceptions should ever happen.
Elements elem = doc.select("img[class*=main-image]");
if ((elem != null) && (elem.size() > 0)) {