Remove Sone instance from SoneUpdater interface.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / SoneUpdater.java
1 package net.pterodactylus.sone.core;
2
3 import net.pterodactylus.sone.data.Sone;
4
5 /**
6  * Component that decides whether a Sone needs to be downloaded because a
7  * newer edition was found.
8  *
9  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
10  */
11 public interface SoneUpdater {
12
13         void updateSone(long edition);
14
15 }