X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2Fimpl%2FSoneImpl.java;h=eccce4b0193a8b2cc7ce0312fd2e3aaf1aabeb64;hb=f333f58180a7f112394cd768d86c95a3c9edf794;hp=551e2298b8f62c512e2e20c534e86b693c3b0d15;hpb=56a2875b53db60fc26dd7ee089d721227508703c;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/data/impl/SoneImpl.java b/src/main/java/net/pterodactylus/sone/data/impl/SoneImpl.java index 551e229..eccce4b 100644 --- a/src/main/java/net/pterodactylus/sone/data/impl/SoneImpl.java +++ b/src/main/java/net/pterodactylus/sone/data/impl/SoneImpl.java @@ -78,7 +78,7 @@ public class SoneImpl implements LocalSone { private volatile long latestEdition; /** The time of the last inserted update. */ - private volatile long time; + private final long time; /** The status of this Sone. */ private volatile SoneStatus status = SoneStatus.unknown; @@ -119,11 +119,12 @@ public class SoneImpl implements LocalSone { * @param local * {@code true} if the Sone is a local Sone, {@code false} otherwise */ - public SoneImpl(Database database, Identity identity, boolean local) { + public SoneImpl(Database database, Identity identity, boolean local, long time) { this.database = database; this.id = identity.getId(); this.identity = identity; this.local = local; + this.time = time; } // @@ -239,18 +240,6 @@ public class SoneImpl implements LocalSone { } /** - * Sets the time of the last inserted update of this Sone. - * - * @param time - * The time of the update (in milliseconds since Jan 1, 1970 UTC) - * @return This Sone (for method chaining) - */ - public Sone setTime(long time) { - this.time = time; - return this; - } - - /** * Returns the status of this Sone. * * @return The status of this Sone