- Timestamp:
- 08/26/11 13:42:07 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/descent.compiler/src-util/melnorme/utilbox/misc/ReflectionUtils.java
r1713 r1746 54 54 55 55 /** Same as {@link Method#invoke(Object, Object...)} but unchecks the exceptions. */ 56 @SuppressWarnings("unchecked")57 56 public static <T> T uncheckedInvoke(Object obj, final Method method, Object... args) { 58 57 try { … … 90 89 } 91 90 } 91 92 /* ---------------------------------------------------------------- */ 92 93 93 94 /** Reads the field with given fieldName in given object. */
