Remove @author tags
[Sone.git] / src / main / java / net / pterodactylus / sone / core / SoneDownloader.java
index 161536d..0ff66fd 100644 (file)
@@ -10,8 +10,6 @@ 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 {
@@ -19,7 +17,7 @@ public interface SoneDownloader extends Service {
        void addSone(Sone sone);
        Sone fetchSone(Sone sone, FreenetURI soneUri, boolean fetchOnly);
 
-       Runnable fetchSoneWithUriAction(Sone sone);
-       Runnable fetchSoneAction(Sone sone);
+       Runnable fetchSoneAsUskAction(Sone sone);
+       Runnable fetchSoneAsSskAction(Sone sone);
 
 }