You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by co...@apache.org on 2013/01/08 18:09:47 UTC

svn commit: r1430391 - /syncope/trunk/core/src/main/java/org/apache/syncope/core/connid/PasswordGenerator.java

Author: coheigea
Date: Tue Jan  8 17:09:47 2013
New Revision: 1430391

URL: http://svn.apache.org/viewvc?rev=1430391&view=rev
Log:
Spelling error fixed

Modified:
    syncope/trunk/core/src/main/java/org/apache/syncope/core/connid/PasswordGenerator.java

Modified: syncope/trunk/core/src/main/java/org/apache/syncope/core/connid/PasswordGenerator.java
URL: http://svn.apache.org/viewvc/syncope/trunk/core/src/main/java/org/apache/syncope/core/connid/PasswordGenerator.java?rev=1430391&r1=1430390&r2=1430391&view=diff
==============================================================================
--- syncope/trunk/core/src/main/java/org/apache/syncope/core/connid/PasswordGenerator.java (original)
+++ syncope/trunk/core/src/main/java/org/apache/syncope/core/connid/PasswordGenerator.java Tue Jan  8 17:09:47 2013
@@ -168,8 +168,8 @@ public class PasswordGenerator {
             throws IncompatiblePolicyException {
 
         if (policySpec.getMinLength() == 0) {
-            LOG.error("Minimum lenght given is zero");
-            throw new IncompatiblePolicyException("Minimum lenght given is zero");
+            LOG.error("Minimum length given is zero");
+            throw new IncompatiblePolicyException("Minimum length given is zero");
         }
         if (policySpec.isMustEndWithAlpha() && policySpec.isMustntEndWithAlpha()) {
             LOG.error("Incompatible password policy specification: mustEndWithAlpha and"