McLeodMoores / xl4j

Framework for writing Excel Add-ins in Java
Other
7 stars 3 forks source link

Generic methods do not work for array inputs #135

Open emcleod opened 7 years ago

emcleod commented 7 years ago

e.g. public static T[] double(T[] input) {...}

The generic type information is not retrieved correctly and so the result array is always Object[], which throws an exception when the method is invoked.