(Class<?> clazz, String name, Class<?> type)
| 23 | } |
| 24 | |
| 25 | public static Object getStaticObjectOrNull(Class<?> clazz, String name, Class<?> type) { |
| 26 | try { |
| 27 | return getStaticObject(clazz, name, type); |
| 28 | } catch (NoSuchFieldException e) { |
| 29 | return null; |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | public static Object getStaticObjectOrNull(Class<?> clazz, String name) { |
| 34 | return getStaticObjectOrNull(clazz, name, null); |
nothing calls this directly
no test coverage detected