You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Returns the class represented by {@code className} using the {@code classLoader}. This implementation supports names like "{@code java.lang.String[]}" as
78
64
* well as "{@code [Ljava.lang.String;}".
@@ -85,7 +71,7 @@ public static <T> Class<T> getClass(final ClassLoader classLoader, final String
85
71
* @throws ClassNotFoundException if the class is not found
86
72
*/
87
73
@SuppressWarnings("unchecked") // assume the call site knows what it's doing.
@@ -96,19 +82,6 @@ public static <T> Class<T> getClass(final ClassLoader classLoader, final String
96
82
returnclazz;
97
83
}
98
84
99
-
/**
100
-
* Returns the (initialized) class represented by {@code className} using the current thread's context class loader. This implementation supports names like
101
-
* "{@code java.lang.String[]}" as well as "{@code [Ljava.lang.String;}".
102
-
*
103
-
* @param <T> The expected class type.
104
-
* @param className the class name
105
-
* @return the class represented by {@code className} using the current thread's context class loader
106
-
* @throws ClassNotFoundException if the class is not found
0 commit comments