Author: rbaxter85
Date: Wed Oct 19 16:56:31 2011
New Revision: 1186332
URL: http://svn.apache.org/viewvc?rev=1186332&view=rev
Log:
SHINDIG-1641
Remove System.out.println from OAuth2ServiceImpl
Modified:
shindig/trunk/java/social-api/src/main/java/org/apache/shindig/social/core/oauth2/OAuth2ServiceImpl.java
Modified:
shindig/trunk/java/social-api/src/main/java/org/apache/shindig/social/core/oauth2/OAuth2ServiceImpl.java
URL:
http://svn.apache.org/viewvc/shindig/trunk/java/social-api/src/main/java/org/apache/shindig/social/core/oauth2/OAuth2ServiceImpl.java?rev=1186332&r1=1186331&r2=1186332&view=diff
==============================================================================
---
shindig/trunk/java/social-api/src/main/java/org/apache/shindig/social/core/oauth2/OAuth2ServiceImpl.java
(original)
+++
shindig/trunk/java/social-api/src/main/java/org/apache/shindig/social/core/oauth2/OAuth2ServiceImpl.java
Wed Oct 19 16:56:31 2011
@@ -69,8 +69,6 @@ public class OAuth2ServiceImpl implement
this.authCodeExpires =
Long.valueOf(props.getProperty("shindig.oauth2.authCodeExpiration"));
this.accessTokenExpires =
Long.valueOf(props.getProperty("shindig.oauth2.accessTokenExpiration"));
- System.out.print("YOUDAMAN: " + this.authCodeExpires);
-
// TODO (Matt): validators should be injected
authCodeValidator = new AuthorizationCodeRequestValidator(store);
accessTokenValidator = new AccessTokenRequestValidator(store);