From: Felix Dörre Date: Fri, 25 Jul 2014 00:02:13 +0000 (+0200) Subject: fixup! Certificate testCase fix error on mac. X-Git-Url: https://code.wpia.club/?p=gigi.git;a=commitdiff_plain;h=6ca997cd936c888be50b82a1a9272658415f8d9b fixup! Certificate testCase fix error on mac. --- diff --git a/tests/org/cacert/gigi/testUtils/PemKey.java b/tests/org/cacert/gigi/testUtils/PemKey.java index 1bf2c250..170c00a1 100644 --- a/tests/org/cacert/gigi/testUtils/PemKey.java +++ b/tests/org/cacert/gigi/testUtils/PemKey.java @@ -26,7 +26,6 @@ public class PemKey { privKeyPEM = privKeyPEM.replaceAll("-----BEGIN PRIVATE KEY-----", "").replace("\n", ""); // Remove the first and last lines privKeyPEM = privKeyPEM.replaceAll("-----END PRIVATE KEY-----", ""); - System.out.println(privKeyPEM); // Base64 decode the data byte[] encoded = Base64.getDecoder().decode(privKeyPEM);