Description
FormatableArrayHolder.getArray() creates an array of the correct type using reflection and copies it manually. Java 6 introduced a copyOf() method in java.util.Arrays that could do all of this automatically. Now that Java 6 is the minimum level on trunk, we could take advantage of the library method and simplify the code.