Another batch of preemptive bugfixing
This commit is contained in:
@@ -484,7 +484,7 @@ public class EncryptionManager {
|
||||
* @return the decoded value of x
|
||||
*/
|
||||
private static byte char64(char x) {
|
||||
if ((int)x < 0 || (int)x > index_64.length)
|
||||
if ((int)x > index_64.length)
|
||||
return -1;
|
||||
return index_64[(int)x];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user