You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by fp...@apache.org on 2020/05/29 10:01:46 UTC

[shiro] branch master updated: Fix the annotation of setCredentialsMatcher method in AuthenticatingRealm class

This is an automated email from the ASF dual-hosted git repository.

fpapon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shiro.git


The following commit(s) were added to refs/heads/master by this push:
     new 7b60ede  Fix the annotation of setCredentialsMatcher method in AuthenticatingRealm class
     new 2e29785  Merge pull request #238 from ramostear/master
7b60ede is described below

commit 7b60edebd38b38f1644d251d1a068ded26d6d703
Author: ramostear <ra...@163.com>
AuthorDate: Fri May 29 17:29:32 2020 +0800

    Fix the annotation of setCredentialsMatcher method in AuthenticatingRealm class
---
 core/src/main/java/org/apache/shiro/realm/AuthenticatingRealm.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/shiro/realm/AuthenticatingRealm.java b/core/src/main/java/org/apache/shiro/realm/AuthenticatingRealm.java
index 87c1bc5..0a19b6e 100644
--- a/core/src/main/java/org/apache/shiro/realm/AuthenticatingRealm.java
+++ b/core/src/main/java/org/apache/shiro/realm/AuthenticatingRealm.java
@@ -198,7 +198,7 @@ public abstract class AuthenticatingRealm extends CachingRealm implements Initia
     }
 
     /**
-     * Sets the CrendialsMatcher used during an authentication attempt to verify submitted credentials with those
+     * Sets the CredentialsMatcher used during an authentication attempt to verify submitted credentials with those
      * stored in the system.  The implementation of this matcher can be switched via configuration to
      * support any number of schemes, including plain text comparisons, hashing comparisons, and others.
      * <p/>