danishgoel / cocoon-p2p

Backup of Cocoon P2P Library from GoogleCode. Automatically exported from https://code.google.com/p/cocoon-p2p
0 stars 0 forks source link

Missing clone method in ClientEvent #5

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
the com.projectcocoon.p2p.events.ClientEvent misses a clone() method, which may 
cause issues when it needs to be cloned for redispatching.

FIX:

add following code to the ClientEvent class:

override public function clone():Event
{
    return new ClientEvent(type, client, group);
}

Original issue reported on code.google.com by weir...@gmail.com on 13 May 2011 at 9:13

GoogleCodeExporter commented 9 years ago

Original comment by peter%pr...@gtempaccount.com on 13 May 2011 at 9:19

GoogleCodeExporter commented 9 years ago
fixed now, thanks for reporting!

Original comment by peter%pr...@gtempaccount.com on 13 May 2011 at 9:51