[java-identity-provider] branch master updated: Checkstyle fixes

Tom Zeller tzeller at dragonacea.biz
Tue Mar 6 13:18:34 EST 2018


This is an automated email from the git hooks/post-receive script.

tzeller pushed a commit to branch master
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=9e82dd86c23360c3fa7203e0e80fe1702afbc844

The following commit(s) were added to refs/heads/master by this push:
       new  9e82dd8   Checkstyle fixes
9e82dd8 is described below

commit 9e82dd86c23360c3fa7203e0e80fe1702afbc844
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Tue Mar 6 12:18:33 2018 -0600

    Checkstyle fixes
---
 .../net/shibboleth/idp/authn/impl/DoLockoutManagerOperation.java | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/DoLockoutManagerOperation.java b/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/DoLockoutManagerOperation.java
index f6cee98..f88deec 100644
--- a/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/DoLockoutManagerOperation.java
+++ b/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/DoLockoutManagerOperation.java
@@ -195,7 +195,8 @@ public class DoLockoutManagerOperation extends AbstractProfileAction {
                     g.writeBooleanField("lockout", lockout);
                     g.close();
                 } catch (final IOException e) {
-                    sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, "Internal Server Error", "Lockout manager error.");
+                    sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, "Internal Server Error",
+                            "Lockout manager error.");
                 }
                 
             } else if ("POST".equals(request.getMethod())) {
@@ -206,7 +207,8 @@ public class DoLockoutManagerOperation extends AbstractProfileAction {
                         throw new IOException();
                     }
                 } catch (final IOException e) {
-                    sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, "Internal Server Error", "Lockout manager error.");
+                    sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, "Internal Server Error",
+                            "Lockout manager error.");
                 }
                 
             } else if ("DELETE".equals(request.getMethod())) {
@@ -217,7 +219,8 @@ public class DoLockoutManagerOperation extends AbstractProfileAction {
                         throw new IOException();
                     }
                 } catch (final IOException e) {
-                    sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, "Internal Server Error", "Lockout manager error.");
+                    sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, "Internal Server Error",
+                            "Lockout manager error.");
                 }
                 
             } else {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list