X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FSone.java;h=27c78527e8a7ee021f1e68c3fb3e86256ce626cf;hb=dcf921e95da3881c75f57323733273c96027822e;hp=33b97a071477b3d94220ad37a279874679357ffd;hpb=1127a71127c6488152e5cbe3b8c6d941eaf14e83;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/data/Sone.java b/src/main/java/net/pterodactylus/sone/data/Sone.java index 33b97a0..27c7852 100644 --- a/src/main/java/net/pterodactylus/sone/data/Sone.java +++ b/src/main/java/net/pterodactylus/sone/data/Sone.java @@ -217,12 +217,13 @@ public class Sone { } /** - * Adds the given post to this Sone. + * Adds a post with the given text to this Sone. * - * @param post - * The post to add + * @param text + * The text to post */ - public synchronized void addPost(Post post) { + public synchronized void addPost(String text) { + Post post = new Post(this, System.currentTimeMillis(), text); if (posts.add(post)) { modificationCounter++; }