Skip to content

Commit

Permalink
Fixed some javadoc issues
Browse files Browse the repository at this point in the history
  • Loading branch information
elecharny committed Dec 19, 2024
1 parent 06a5107 commit b1dc83a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
* multiple {@link IoSession}s. Please note that the buffer derived from and its
* derived buffers are not auto-expandable nor auto-shrinkable. Trying to call
* {@link #setAutoExpand(boolean)} or {@link #setAutoShrink(boolean)} with
* <code>true</code> parameter will raise an {@link IllegalStateException}.
* <code>true</code> parameter will raise an {@link java.lang.IllegalStateException}.
*
* <h2>Changing Buffer Allocation Policy</h2>
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
*/
package org.apache.mina.core.buffer.matcher;

import org.apache.commons.io.FilenameUtils

/**
* A {@link ClassNameMatcher} that uses simplified regular expressions
* provided by {@link org.apache.commons.io.FilenameUtils#wildcardMatch(String, String) FilenameUtils.wildcardMatch}
Expand All @@ -44,4 +46,4 @@ public WildcardClassNameMatcher(String pattern) {
public boolean matches(String className) {
return FilenameUtils.wildcardMatch(className, pattern, IOCase.SENSITIVE);
}
}
}

0 comments on commit b1dc83a

Please # to comment.