Repository: cxf Updated Branches: refs/heads/3.0.x-fixes b1ab9e914 -> 86bbf7c99
Removing println Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/86bbf7c9 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/86bbf7c9 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/86bbf7c9 Branch: refs/heads/3.0.x-fixes Commit: 86bbf7c99f05e09359072effab9dcd5de847e383 Parents: 5a01891 Author: Sergey Beryozkin <[email protected]> Authored: Thu Dec 3 10:31:35 2015 +0000 Committer: Sergey Beryozkin <[email protected]> Committed: Thu Dec 3 14:13:06 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/86bbf7c9/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));
