Repository: cxf Updated Branches: refs/heads/3.1.x-fixes 951644d9c -> 4a0122981
Removing println Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/4a012298 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/4a012298 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/4a012298 Branch: refs/heads/3.1.x-fixes Commit: 4a0122981d4cb208a2eb8d4cde6e006022e8a8de Parents: 951644d Author: Sergey Beryozkin <[email protected]> Authored: Thu Dec 3 10:31:35 2015 +0000 Committer: Sergey Beryozkin <[email protected]> Committed: Thu Dec 3 10:32:24 2015 +0000 ---------------------------------------------------------------------- .../java/org/apache/cxf/rs/security/jose/jws/JwsUtilsTest.java | 2 -- 1 file changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/4a012298/rt/rs/security/jose-parent/jose/src/test/java/org/apache/cxf/rs/security/jose/jws/JwsUtilsTest.java ---------------------------------------------------------------------- diff --git a/rt/rs/security/jose-parent/jose/src/test/java/org/apache/cxf/rs/security/jose/jws/JwsUtilsTest.java b/rt/rs/security/jose-parent/jose/src/test/java/org/apache/cxf/rs/security/jose/jws/JwsUtilsTest.java index f82ce92..78d827b 100644 --- a/rt/rs/security/jose-parent/jose/src/test/java/org/apache/cxf/rs/security/jose/jws/JwsUtilsTest.java +++ b/rt/rs/security/jose-parent/jose/src/test/java/org/apache/cxf/rs/security/jose/jws/JwsUtilsTest.java @@ -30,7 +30,6 @@ import org.apache.cxf.message.MessageImpl; import org.apache.cxf.rs.security.jose.common.JoseConstants; import org.apache.cxf.rs.security.jose.jwk.JsonWebKey; import org.apache.cxf.rs.security.jose.jwk.JsonWebKeys; -import org.apache.cxf.rs.security.jose.jwk.JwkUtils; import org.apache.cxf.rs.security.jose.jwk.KeyType; import org.junit.Assert; @@ -49,7 +48,6 @@ public class JwsUtilsTest extends Assert { List<JsonWebKey> keys = keySet.getRsaKeys(); assertEquals(1, keys.size()); JsonWebKey key = keys.get(0); - System.out.println(JwkUtils.jwkKeyToJson(key)); assertEquals(KeyType.RSA, key.getKeyType()); assertEquals("alice", key.getKeyId()); assertNotNull(key.getKeyProperty(JsonWebKey.RSA_PUBLIC_EXP));
