This method avoids a call to #mark() when doing comparison.
(Mark another)
| 261 | * This method avoids a call to {@link #mark()} when doing comparison. |
| 262 | */ |
| 263 | private boolean markEquals(Mark another) { |
| 264 | return another.equals(current); |
| 265 | } |
| 266 | |
| 267 | void reset(Mark mark) { |
| 268 | current = new Mark(mark); |