Skip to content

Commit

Permalink
Fix old cut & paste names.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1688586 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
rmaucher committed Jul 1, 2015
1 parent 4233639 commit 4eb1a0f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions java/org/apache/catalina/storeconfig/CredentialHandlerSF.java
Expand Up @@ -59,23 +59,23 @@ public void store(PrintWriter aWriter, int indent, Object aElement)
} }


/** /**
* Store the specified Realm properties and child (Realm) * Store the specified CredentialHandler properties and child (CredentialHandler)
* *
* @param aWriter * @param aWriter
* PrintWriter to which we are storing * PrintWriter to which we are storing
* @param indent * @param indent
* Number of spaces to indent this element * Number of spaces to indent this element
* @param aRealm * @param aCredentialHandler
* Realm whose properties are being stored * CredentialHandler whose properties are being stored
* *
* @exception Exception * @exception Exception
* if an exception occurs while storing * if an exception occurs while storing
*/ */
@Override @Override
public void storeChildren(PrintWriter aWriter, int indent, Object aRealm, public void storeChildren(PrintWriter aWriter, int indent, Object aCredentialHandler,
StoreDescription parentDesc) throws Exception { StoreDescription parentDesc) throws Exception {
if (aRealm instanceof NestedCredentialHandler) { if (aCredentialHandler instanceof NestedCredentialHandler) {
NestedCredentialHandler nestedCredentialHandler = (NestedCredentialHandler) aRealm; NestedCredentialHandler nestedCredentialHandler = (NestedCredentialHandler) aCredentialHandler;


// Store nested <CredentialHandler> element // Store nested <CredentialHandler> element
CredentialHandler[] credentialHandlers = nestedCredentialHandler.getCredentialHandlers(); CredentialHandler[] credentialHandlers = nestedCredentialHandler.getCredentialHandlers();
Expand Down

0 comments on commit 4eb1a0f

Please sign in to comment.