Conversation: get complete history instead of one element at a time

This commit is contained in:
Sebastian Kaspari 2010-03-21 16:08:27 +01:00
parent 705ad8c00a
commit d62dcf86bd
1 changed files with 3 additions and 3 deletions

View File

@ -85,11 +85,11 @@ public abstract class Conversation
}
/**
* Get size of the current history
* Get the history
*/
public int getHistorySize()
public LinkedList<Message> getHistory()
{
return history.size();
return history;
}
/**