Added some TODOs for future work.

fix-message-formatting
Danny van Heumen 12 years ago
parent de555fa11c
commit 667f339e3c

@ -283,6 +283,8 @@ public void disconnect()
synchronized (this.irc) synchronized (this.irc)
{ {
// Disconnect and clean up // Disconnect and clean up
// FIXME Currently might throw ChannelClosedException since this is
// not correctly handled inside irc-api.
this.irc.disconnect(); this.irc.disconnect();
this.irc = null; this.irc = null;
this.connectionState = null; this.connectionState = null;

@ -89,8 +89,8 @@ protected void initialize(String userID, AccountID accountID)
//Initialize the multi user chat support //Initialize the multi user chat support
multiUserChat = new OperationSetMultiUserChatIrcImpl(this); multiUserChat = new OperationSetMultiUserChatIrcImpl(this);
// TODO Implement OperationSetPresence in order to support private // TODO Implement OperationSetPersistentPresence in order to support
// messaging support. // private messaging.
addSupportedOperationSet( addSupportedOperationSet(
OperationSetMultiUserChat.class, OperationSetMultiUserChat.class,

Loading…
Cancel
Save