From d62dcf86bd8256b26f2f562823bb0e12f3ed28cf Mon Sep 17 00:00:00 2001 From: Sebastian Kaspari Date: Sun, 21 Mar 2010 16:08:27 +0100 Subject: [PATCH] Conversation: get complete history instead of one element at a time --- src/org/yaaic/model/Conversation.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/org/yaaic/model/Conversation.java b/src/org/yaaic/model/Conversation.java index 7acb06d..74e2b9b 100644 --- a/src/org/yaaic/model/Conversation.java +++ b/src/org/yaaic/model/Conversation.java @@ -85,11 +85,11 @@ public abstract class Conversation } /** - * Get size of the current history + * Get the history */ - public int getHistorySize() + public LinkedList getHistory() { - return history.size(); + return history; } /**