I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit ea41a90e authored by jrandom's avatar jrandom Committed by zzz
Browse files

sanity checking

parent b1dd29e6
No related branches found
No related tags found
No related merge requests found
......@@ -142,7 +142,7 @@ public class Base64 {
}
public static void main(String[] args) {
test();
//test();
if (args.length == 0) {
help();
return;
......@@ -399,6 +399,7 @@ public class Base64 {
* replacing / with ~, and + with -
*/
private static byte[] safeDecode(String source, boolean useStandardAlphabet) {
if (source == null) return null;
String toDecode = null;
if (useStandardAlphabet) {
toDecode = source;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment