Cleanup Code Style Issues

Cleanup Code Style Issues
This commit is contained in:
Rob Winch
2019-08-12 13:06:49 -05:00
committed by GitHub
172 changed files with 288 additions and 306 deletions

View File

@@ -47,7 +47,7 @@ public enum OpenIDAuthenticationStatus {
// ~ Constructors
// ===================================================================================================
private OpenIDAuthenticationStatus(String name) {
OpenIDAuthenticationStatus(String name) {
this.name = name;
}

View File

@@ -36,10 +36,10 @@ public interface OpenIDConsumer {
* @return String URI to redirect user to for authentication
* @throws OpenIDConsumerException if anything bad happens
*/
public String beginConsumption(HttpServletRequest req, String claimedIdentity,
String returnToUrl, String realm) throws OpenIDConsumerException;
String beginConsumption(HttpServletRequest req, String claimedIdentity,
String returnToUrl, String realm) throws OpenIDConsumerException;
public OpenIDAuthenticationToken endConsumption(HttpServletRequest req)
OpenIDAuthenticationToken endConsumption(HttpServletRequest req)
throws OpenIDConsumerException;
}