1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-23 22:14:06 +02:00

Fix indentation

This commit is contained in:
randomcommitter
2019-09-15 23:11:11 +01:00
parent 50e5e2a5f4
commit d64162c636

View File

@@ -24,7 +24,7 @@ public class ErotivRipper extends AbstractHTMLRipper {
boolean rippingProfile;
public ErotivRipper (URL url) throws IOException {
public ErotivRipper(URL url) throws IOException {
super(url);
}
@@ -51,9 +51,7 @@ public class ErotivRipper extends AbstractHTMLRipper {
@Override
public Document getFirstPage() throws IOException {
Response resp = Http.url(this.url)
.ignoreContentType()
.response();
Response resp = Http.url(this.url).ignoreContentType().response();
return resp.parse();
}