Exemplo n.º 1
0
 private Connection getConnectionByGUID(int srcGuid) {
   for (DownloadConnection c : connections.values()) {
     if (c.getRemoteUserGUID() == srcGuid) {
       return c;
     }
   }
   return null;
 }