David Mollitor created ORC-825: ---------------------------------- Summary: Use Empty Array For Collections toArray Key: ORC-825 URL: https://issues.apache.org/jira/browse/ORC-825 Project: ORC Issue Type: Improvement Reporter: David Mollitor Assignee: David Mollitor
{quote} Suppose x is a collection known to contain only strings. The following code can be used to dump the collection into a newly allocated array of String: String[] y = x.toArray(new String[0]); Note that toArray(new Object[0]) is identical in function to toArray(). {quote} https://docs.oracle.com/javase/8/docs/api/java/util/Collection.html Recommended and faster to use the zero-size-array format -- This message was sent by Atlassian Jira (v8.3.4#803005)