fix comment

This commit is contained in:
Looly 2022-04-27 15:05:51 +08:00
parent f969a01986
commit 537d72323c

View File

@ -35,13 +35,13 @@ public class CallerUtil {
* 调用者层级关系
*
* <pre>
* 0 {@link CallerUtil}
* 1 调用{@link CallerUtil}中方法的类
* 0 CallerUtil
* 1 调用CallerUtil中方法的类
* 2 调用者的调用者
* ...
* </pre>
*
* @param depth 层级0表示{@link CallerUtil}本身1表示调用{@link CallerUtil}的类2表示调用者的调用者依次类推
* @param depth 层级0表示CallerUtil本身1表示调用CallerUtil的类2表示调用者的调用者依次类推
* @return 第几级调用者
*/
public static Class<?> getCaller(int depth) {