(T item)
| 28 | } |
| 29 | |
| 30 | public void push(T item) { |
| 31 | if (data.size() > 65536) { |
| 32 | throw new IndexOutOfBoundsException("Trying to push more than 65536 items!"); |
| 33 | } |
| 34 | data.add(item); |
| 35 | } |
| 36 | |
| 37 | public int size() { |
| 38 | return data.size(); |
no test coverage detected