Merge pull request #547 from Gaboso/interfaces
Removed public modifier for methods on interfaces because it is redundant
This commit is contained in:
commit
89df4d7812
@ -9,10 +9,10 @@ import java.net.URL;
|
|||||||
* Oh well, here's to encapsulation and abstraction! (raises glass)
|
* Oh well, here's to encapsulation and abstraction! (raises glass)
|
||||||
*/
|
*/
|
||||||
public interface RipperInterface {
|
public interface RipperInterface {
|
||||||
public void rip() throws IOException;
|
void rip() throws IOException;
|
||||||
public boolean canRip(URL url);
|
boolean canRip(URL url);
|
||||||
public URL sanitizeURL(URL url) throws MalformedURLException;
|
URL sanitizeURL(URL url) throws MalformedURLException;
|
||||||
public void setWorkingDir(URL url) throws IOException;
|
void setWorkingDir(URL url) throws IOException;
|
||||||
public String getHost();
|
String getHost();
|
||||||
public String getGID(URL url) throws MalformedURLException;
|
String getGID(URL url) throws MalformedURLException;
|
||||||
}
|
}
|
@ -1,14 +1,12 @@
|
|||||||
|
|
||||||
package com.rarchives.ripme.ui;
|
package com.rarchives.ripme.ui;
|
||||||
|
|
||||||
import com.rarchives.ripme.ripper.AbstractRipper;
|
import com.rarchives.ripme.ripper.AbstractRipper;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author Mads
|
* @author Mads
|
||||||
*/
|
*/
|
||||||
public interface RipStatusHandler {
|
public interface RipStatusHandler {
|
||||||
|
|
||||||
public void update(AbstractRipper ripper, RipStatusMessage message);
|
void update(AbstractRipper ripper, RipStatusMessage message);
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user