Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit 275b1fc

Browse files
committed
無駄に出ていた警告への抑制
1 parent f3252f8 commit 275b1fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/wrongwrong/mapk/core/EnumMapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class EnumMapper {
88
* @param <T> enumClass
99
* @return Enum.valueOf
1010
*/
11-
@SuppressWarnings("unchecked")
11+
@SuppressWarnings({"unchecked", "rawtypes"})
1212
static <T> T getEnum(Class<T> clazz, String value) {
1313
if (value == null || value.isEmpty()) {
1414
return null;

0 commit comments

Comments
 (0)