()
| 2913 | } |
| 2914 | |
| 2915 | @Override |
| 2916 | public Object[] toArray() { |
| 2917 | // creating an ArrayList so filtering happens once |
| 2918 | return Lists.newArrayList(iterator()).toArray(); |
| 2919 | } |
| 2920 | |
| 2921 | @Override |
| 2922 | public <T> T[] toArray(T[] array) { |
nothing calls this directly
no test coverage detected