Repository: cxf Updated Branches: refs/heads/master 4379faa2f -> b18cc39a1
Removing println Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/b18cc39a Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/b18cc39a Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/b18cc39a Branch: refs/heads/master Commit: b18cc39a165dac76a1bdd6b8dd1d87ce02acf635 Parents: 4379faa Author: Sergey Beryozkin <[email protected]> Authored: Thu Dec 3 10:31:35 2015 +0000 Committer: Sergey Beryozkin <[email protected]> Committed: Thu Dec 3 10:31:35 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/b18cc39a/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));
