Repository: cxf Updated Branches: refs/heads/master 9ef7c5eba -> ad9719178
Fix compile failure Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/ad971917 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/ad971917 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/ad971917 Branch: refs/heads/master Commit: ad97191781606abffe05f01c2dd32efc2f9501bb Parents: 9ef7c5e Author: Daniel Kulp <[email protected]> Authored: Fri Jun 13 12:12:47 2014 -0400 Committer: Daniel Kulp <[email protected]> Committed: Fri Jun 13 12:12:47 2014 -0400 ---------------------------------------------------------------------- .../cxf/systest/jaxrs/security/oauth2/OAuthDataProviderImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/ad971917/systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oauth2/OAuthDataProviderImpl.java ---------------------------------------------------------------------- diff --git a/systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oauth2/OAuthDataProviderImpl.java b/systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oauth2/OAuthDataProviderImpl.java index 8652dd7..23b681d 100644 --- a/systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oauth2/OAuthDataProviderImpl.java +++ b/systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oauth2/OAuthDataProviderImpl.java @@ -63,7 +63,7 @@ public class OAuthDataProviderImpl implements OAuthDataProvider { private Certificate loadCert() throws Exception { InputStream is = this.getClass().getResourceAsStream("/org/apache/cxf/systest/http/resources/Truststore.jks"); - return CryptoUtils.loadCertificate(is, new char[]{'p', 'a', 's', 's', 'w', 'o', 'r', 'd'}, "morpit"); + return CryptoUtils.loadCertificate(is, new char[]{'p', 'a', 's', 's', 'w', 'o', 'r', 'd'}, "morpit", null); }
