1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-11-23 09:22:19 -05:00

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

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;
}
/**