Changeset 95fb2df6
- Timestamp:
- Dec 20, 2016 2:01:36 PM (4 years ago)
- Branches:
- master
- Children:
- fbbfd8a
- Parents:
- c1baee6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
installer/tools/java/src/net/i2p/router/networkdb/kademlia/BundleRouterInfos.java
rc1baee6 r95fb2df6 25 25 26 26 import net.i2p.I2PAppContext; 27 import net.i2p.data.Base64; 27 28 import net.i2p.data.DataFormatException; 28 29 import net.i2p.data.Hash; … … 121 122 int routerCount = 0; 122 123 List<File> toRead = new ArrayList<File>(2048); 123 for (int j = 0; j < PersistentDataStore.B64.length(); j++) {124 File subdir = new File(dbDir, PersistentDataStore.DIR_PREFIX + PersistentDataStore.B64.charAt(j));124 for (int j = 0; j < Base64.ALPHABET_I2P.length(); j++) { 125 File subdir = new File(dbDir, PersistentDataStore.DIR_PREFIX + Base64.ALPHABET_I2P.charAt(j)); 125 126 File[] files = subdir.listFiles(PersistentDataStore.RouterInfoFilter.getInstance()); 126 127 if (files == null)
Note: See TracChangeset
for help on using the changeset viewer.