()
| 1182 | } |
| 1183 | |
| 1184 | protected void popHistory() { |
| 1185 | Location here = location; |
| 1186 | pushFuture(); |
| 1187 | while (historyCount > 0 && location.equals(here)) |
| 1188 | restoreMark(history[--historyCount]); |
| 1189 | } |
| 1190 | |
| 1191 | protected void popFuture() { |
| 1192 | Location here = location; |
no test coverage detected