Here you can find the source of zeroObjects()
public static Object[] zeroObjects()
//package com.java2s; //License from project: Open Source License public class Main { private static final Object[] EMPTY_OBJECT_ARRAY = new Object[] {}; public static Object[] zeroObjects() { return EMPTY_OBJECT_ARRAY; }/*www. j ava 2 s . c o m*/ }