This commit is contained in:
Looly
2023-03-13 05:04:50 +08:00
parent 5b559d19bd
commit 48eec2a8ae
92 changed files with 1487 additions and 651 deletions

View File

@@ -47,7 +47,7 @@ public final class ProxyUtil {
* 3、调用$Proxy0的$Proxy0(InvocationHandler)构造函数 创建$Proxy0的对象并且用interfaces参数遍历其所有接口的方法这些实现方法的实现本质上是通过反射调用被代理对象的方法<br>
* 4、将$Proxy0的实例返回给客户端。 <br>
* 5、当调用代理类的相应方法时相当于调用 {@link InvocationHandler#invoke(Object, java.lang.reflect.Method, Object[])} 方法
*
* <p> <p>
*
* @param <T> 被代理对象类型
* @param classloader 被代理类对应的ClassLoader

View File

@@ -305,7 +305,7 @@ public class JavaInfo implements Serializable {
*
* <p>
* 例如:
*
* <p>
*
* <ul>
* <li>测试JDK 1.2{@code isJavaVersionAtLeast(1.2f)}</li>
@@ -324,7 +324,7 @@ public class JavaInfo implements Serializable {
*
* <p>
* 例如:
*
* <p>
*
* <ul>
* <li>测试JDK 1.2{@code isJavaVersionAtLeast(120)}</li>

View File

@@ -25,6 +25,7 @@ public class QrAsciiArt {
this.qrConfig = qrConfig;
}
@SuppressWarnings("UnnecessaryUnicodeEscape")
@Override
public String toString() {
final int width = matrix.getWidth();