Remove @author tags
[Sone.git] / src / main / java / net / pterodactylus / sone / core / SoneDownloader.java
index 039faad..0ff66fd 100644 (file)
@@ -10,17 +10,14 @@ import com.google.inject.ImplementedBy;
 /**
  * Downloads and parses Sone and {@link Core#updateSone(Sone) updates the
  * core}.
- *
- * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
 @ImplementedBy(SoneDownloaderImpl.class)
 public interface SoneDownloader extends Service {
 
        void addSone(Sone sone);
-       void fetchSone(Sone sone, FreenetURI soneUri);
        Sone fetchSone(Sone sone, FreenetURI soneUri, boolean fetchOnly);
 
-       Runnable fetchSoneWithUriAction(Sone sone);
-       Runnable fetchSoneAction(Sone sone);
+       Runnable fetchSoneAsUskAction(Sone sone);
+       Runnable fetchSoneAsSskAction(Sone sone);
 
 }