!894 修复几处javadoc问题

Merge pull request !894 from emptypoint/fix-doc
This commit is contained in:
Looly 2022-12-11 05:38:57 +00:00 committed by Gitee
commit 8e1494cd16
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ public enum BeanDescCache {
*
* @param beanClass Bean的类
* @param supplier 对象不存在时创建对象的函数
* @return 属性名和{@link BeanDesc}映射
* @return 属性名和 {@link BeanDesc}映射
* @since 5.4.2
*/
public BeanDesc getBeanDesc(final Class<?> beanClass, final SerSupplier<BeanDesc> supplier) {

View File

@ -4,7 +4,7 @@ import java.io.Serializable;
import java.util.Iterator;
/**
* {@link AbstractCache} 的值迭代器.
* {@link AbstractCache} 的值迭代器.
* @author looly
*
* @param <V> 迭代对象类型

View File

@ -18,7 +18,7 @@ public class StrFormatter {
* 如果想输出 {} 使用 \\转义 { 即可如果想输出 {} 之前的 \ 使用双转义符 \\\\ 即可<br>
* <br>
* 通常使用format("this is {} for {}", "a", "b") = this is a for b<br>
* 转义{} format("this is \\{} for {}", "a", "b") = this is \{} for a<br>
* 转义{} format("this is \\{} for {}", "a", "b") = this is {} for a<br>
* 转义\ format("this is \\\\{} for {}", "a", "b") = this is \a for b<br>
*
* @param strPattern 字符串模板