1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-09 09:09:38 +02:00

Remove empty statements

This commit is contained in:
Florian Schmaus 2014-11-09 11:02:49 +01:00
parent 77a4867450
commit a9c798f3bb
9 changed files with 8 additions and 15 deletions

View file

@ -95,9 +95,7 @@ public class MessageEventManager extends Manager {
message.getFrom(),
messageEvent.getPacketID(),
eventType.concat("Notification"));
};
}
}, PACKET_FILTER);
INSTANCES.put(connection, this);
}

View file

@ -83,8 +83,7 @@ public class RosterExchangeManager {
(RosterExchange) message.getExtension(ELEMENT, NAMESPACE);
// Fire event for roster exchange listeners
fireRosterExchangeListeners(message.getFrom(), rosterExchange.getRosterEntries());
};
}
};
connection.addPacketListener(packetListener, PACKET_FILTER);
}