(Object obj, Class<T> type)
| 1111 | } |
| 1112 | |
| 1113 | public static <T> T getFirstByTypeOrNull(Object obj, Class<T> type) { |
| 1114 | try { |
| 1115 | return getFirstByType(obj, type); |
| 1116 | } catch (NoSuchFieldException e) { |
| 1117 | return null; |
| 1118 | } |
| 1119 | } |
| 1120 | |
| 1121 | /** |
| 1122 | * NSF: Neither Static nor Final |
nothing calls this directly
no test coverage detected