()
| 1168 | } |
| 1169 | |
| 1170 | protected void pushFuture() { |
| 1171 | if (futureCount + 1 >= future.length) { |
| 1172 | for (int i = 0; i < future.length - 1; i++) |
| 1173 | future[i] = future[i + 1]; |
| 1174 | future[futureCount] = saveMark(); |
| 1175 | } else { |
| 1176 | future[futureCount++] = saveMark(); |
| 1177 | } |
| 1178 | } |
| 1179 | |
| 1180 | protected void clearFuture() { |
| 1181 | futureCount = 0; |