Don’t force ID to be a UUID.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 27 Nov 2014 05:49:32 +0000 (06:49 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 27 Nov 2014 05:49:32 +0000 (06:49 +0100)
src/main/java/net/pterodactylus/sone/database/memory/MemoryPost.java

index 180cf6c..f5c4597 100644 (file)
@@ -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