Deletes the last slice in the stack.
()
| 183 | |
| 184 | /** Deletes the last slice in the stack. */ |
| 185 | public void deleteLastSlice() { |
| 186 | int nSlices = getSize(); |
| 187 | if (nSlices>0) |
| 188 | deleteSlice(nSlices); |
| 189 | } |
| 190 | |
| 191 | public int getWidth() { |
| 192 | return width; |
no test coverage detected