Unwrap an object
(Object object)
| 790 | * Unwrap an object |
| 791 | */ |
| 792 | private static Object unwrap(Object object) { |
| 793 | if (object instanceof Reflect) { |
| 794 | return ((Reflect) object).get(); |
| 795 | } |
| 796 | |
| 797 | return object; |
| 798 | } |
| 799 | |
| 800 | /** |
| 801 | * Get an array of types for an array of objects |