(@NotNull Application zeze, @NotNull String handleClassName)
| 20 | } |
| 21 | |
| 22 | public static @NotNull Class<?> findClass(@NotNull Application zeze, @NotNull String handleClassName) |
| 23 | throws ClassNotFoundException { |
| 24 | var hotManager = zeze.getHotManager(); |
| 25 | return hotManager == null |
| 26 | ? Class.forName(handleClassName) |
| 27 | : hotManager.getHotRedirect().loadClass(handleClassName); |
| 28 | } |
| 29 | |
| 30 | @SuppressWarnings("unchecked") |
| 31 | public @NotNull THandle findHandle(@NotNull Application zeze, @NotNull String handleClassName) { |
no test coverage detected