svn commit: r759255 - /ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r759255 - /ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java

doogie-3
Author: doogie
Date: Fri Mar 27 17:01:44 2009
New Revision: 759255

URL: http://svn.apache.org/viewvc?rev=759255&view=rev
Log:
Fix lines that *only* have whitespace.

Modified:
    ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java

Modified: ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java?rev=759255&r1=759254&r2=759255&view=diff
==============================================================================
--- ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java (original)
+++ ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java Fri Mar 27 17:01:44 2009
@@ -172,11 +172,11 @@
      */
     public static String emailPassword(HttpServletRequest request, HttpServletResponse response) {
         String defaultScreenLocation = "component://securityext/widget/EmailSecurityScreens.xml#PasswordEmail";
-
+
         GenericDelegator delegator = (GenericDelegator) request.getAttribute("delegator");
         LocalDispatcher dispatcher = (LocalDispatcher) request.getAttribute("dispatcher");
         String productStoreId = ProductStoreWorker.getProductStoreId(request);
-
+
         String errMsg = null;
 
         Map<String, String> subjectData = FastMap.newInstance();
@@ -277,7 +277,7 @@
         if (UtilValidate.isEmpty(bodyScreenLocation)) {
             bodyScreenLocation = defaultScreenLocation;
         }
-
+
         // set the needed variables in new context
         Map<String, Object> bodyParameters = FastMap.newInstance();
         bodyParameters.put("useEncryption", Boolean.valueOf(useEncryption));
@@ -354,7 +354,7 @@
         // if we logged in okay, do the check store customer role
         return ProductEvents.checkStoreCustomerRole(request, response);
     }
-
+
     public static String getUsername(HttpServletRequest request) {
         String cookieUsername = null;
         Cookie[] cookies = request.getCookies();
@@ -369,7 +369,7 @@
         }
         return cookieUsername;
     }
-
+
     public static void setUsername(HttpServletRequest request, HttpServletResponse response) {
         HttpSession session = request.getSession();
         String domain = UtilProperties.getPropertyValue("url.properties", "cookie.domain");