Remove all blank lines added previously in RipperInterface

This commit is contained in:
Gaboso 2017-05-18 13:33:56 -04:00
parent 44fe9885ab
commit c4ee75688c

View File

@ -9,17 +9,10 @@ import java.net.URL;
* Oh well, here's to encapsulation and abstraction! (raises glass)
*/
public interface RipperInterface {
void rip() throws IOException;
boolean canRip(URL url);
URL sanitizeURL(URL url) throws MalformedURLException;
void setWorkingDir(URL url) throws IOException;
String getHost();
String getGID(URL url) throws MalformedURLException;
}