Changeset f5ae9c2
- Timestamp:
- Nov 14, 2015 2:50:08 AM (5 years ago)
- Branches:
- master
- Children:
- 99c9b30
- Parents:
- 23cb4ca
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
installer/tools/java/src/net/i2p/router/networkdb/kademlia/BundleRouterInfos.java
r23cb4ca rf5ae9c2 25 25 26 26 import net.i2p.I2PAppContext; 27 import net.i2p.data.DataFormatException; 27 28 import net.i2p.data.Hash; 28 29 import net.i2p.data.router.RouterAddress; … … 110 111 ri.readBytes(fis, true); // true = verify sig on read 111 112 me = ri.getIdentity().getHash(); 112 } catch (RuntimeException e) { 113 } catch (IOException e) { 114 //System.out.println("Can't determine our identity"); 115 } catch (DataFormatException e) { 113 116 //System.out.println("Can't determine our identity"); 114 117 } finally { … … 210 213 else 211 214 System.out.println("Failed copy of " + file + " to " + toDir); 212 } catch (RuntimeException e) { 215 } catch (IOException e) { 216 System.out.println("Skipping bad " + file); 217 } catch (DataFormatException e) { 213 218 System.out.println("Skipping bad " + file); 214 219 } finally {
Note: See TracChangeset
for help on using the changeset viewer.