X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdatabase%2Fmemory%2FMemoryPost.java;h=f5c4597b16e3186639ddf5e3d4f9353d921cad0c;hb=b10dc3573e2bf5c053d62c85b7ce19f9488d6a3c;hp=180cf6c4cc33e2b26a1b1954900187fd0714e2e2;hpb=81077b2ff62eb1c94d4215bbde324a0e9d03b561;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/database/memory/MemoryPost.java b/src/main/java/net/pterodactylus/sone/database/memory/MemoryPost.java index 180cf6c..f5c4597 100644 --- a/src/main/java/net/pterodactylus/sone/database/memory/MemoryPost.java +++ b/src/main/java/net/pterodactylus/sone/database/memory/MemoryPost.java @@ -17,8 +17,6 @@ package net.pterodactylus.sone.database.memory; -import java.util.UUID; - import net.pterodactylus.sone.data.Post; import net.pterodactylus.sone.data.Sone; import net.pterodactylus.sone.database.SoneProvider; @@ -39,8 +37,8 @@ class MemoryPost implements Post { /** The Sone provider. */ private final SoneProvider soneProvider; - /** The GUID of the post. */ - private final UUID id; + /** The ID of the post. */ + private final String id; /** The ID of the owning Sone. */ private final String soneId; @@ -75,7 +73,7 @@ class MemoryPost implements Post { public MemoryPost(MemoryDatabase postDatabase, SoneProvider soneProvider, String id, String soneId, String recipientId, long time, String text) { this.postDatabase = postDatabase; this.soneProvider = soneProvider; - this.id = UUID.fromString(id); + this.id = id; this.soneId = soneId; this.recipientId = recipientId; this.time = time; @@ -91,7 +89,7 @@ class MemoryPost implements Post { */ @Override public String getId() { - return id.toString(); + return id; } @Override