Skip to content

Commit

Permalink
Util.loadClass back to raw type
Browse files Browse the repository at this point in the history
Signed-off-by: pizzi80 <[email protected]>
  • Loading branch information
pizzi80 committed Sep 12, 2024
1 parent 365ca07 commit 0d0d2f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impl/src/main/java/com/sun/faces/util/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ public static SchemaFactory createSchemaFactory(String uri) {
"char", char.class
);

public static Class<?> loadClass(String name, Object fallbackClass) throws ClassNotFoundException {
public static Class loadClass(String name, Object fallbackClass) throws ClassNotFoundException {
// Primitive Type
Class<?> primitiveType = primitiveTypes.get(name);
if (primitiveType != null) return primitiveType;
Expand Down

0 comments on commit 0d0d2f2

Please sign in to comment.