Switch back to the initial implementation of RegistrationManager to keep sending the same events

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6363 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Charlie Groves
2010-12-10 02:51:05 +00:00
parent 5476241fa4
commit e7dd16adc1
3 changed files with 11 additions and 12 deletions
@@ -11,9 +11,8 @@ public class RegistrationManager implements RegistrationProvider
public void registerReceiver (ClientObject caller, Registration reg)
{
if (caller.receivers.containsKey(reg.getKey())) {
caller.updateReceivers(reg);
} else {
caller.addToReceivers(reg);
caller.removeFromReceivers(reg.getKey());
}
caller.addToReceivers(reg);
}
}