forked from I2P_Developers/i2p.i2p
Consolidate base64 alphabet string
This commit is contained in:
@@ -59,7 +59,7 @@ public class PersistentDataStore extends TransientDataStore {
|
||||
private final static int READ_DELAY = 2*60*1000;
|
||||
private static final String PROP_FLAT = "router.networkDatabase.flat";
|
||||
static final String DIR_PREFIX = "r";
|
||||
static final String B64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-~";
|
||||
private static final String B64 = Base64.ALPHABET_I2P;
|
||||
|
||||
/**
|
||||
* @param dbDir relative path
|
||||
|
||||
@@ -45,7 +45,7 @@ class ProfilePersistenceHelper {
|
||||
private static final String UNCOMPRESSED_SUFFIX = ".txt";
|
||||
private static final String OLD_SUFFIX = ".dat";
|
||||
private static final String DIR_PREFIX = "p";
|
||||
private static final String B64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-~";
|
||||
private static final String B64 = Base64.ALPHABET_I2P;
|
||||
|
||||
/**
|
||||
* If we haven't been able to get a message through to the peer in this much time,
|
||||
|
||||
Reference in New Issue
Block a user