@@ -188,18 +188,6 @@ final class OD_HTML_Tag_Processor extends WP_HTML_Tag_Processor {
188
188
*/
189
189
private $ cursor_move_count = 0 ;
190
190
191
- /**
192
- * Count for the number of times next_token() was called.
193
- *
194
- * The method that uses this is deprecated and it will be removed in a future release.
195
- *
196
- * @since 0.4.1
197
- * @var int
198
- * @see self::next_token()
199
- * @see self::get_next_token_count()
200
- */
201
- private $ next_token_count = 0 ;
202
-
203
191
/**
204
192
* Finds the next tag.
205
193
*
@@ -271,7 +259,6 @@ public function expects_closer( ?string $tag_name = null ): bool {
271
259
*/
272
260
public function next_token (): bool {
273
261
$ this ->current_xpath = null ; // Clear cache.
274
- ++$ this ->next_token_count ; // TODO: Remove when the deprecated get_next_token_count() method is removed.
275
262
++$ this ->cursor_move_count ;
276
263
if ( ! parent ::next_token () ) {
277
264
$ this ->open_stack_tags = array ();
@@ -365,20 +352,6 @@ public function get_cursor_move_count(): int {
365
352
return $ this ->cursor_move_count ;
366
353
}
367
354
368
- /**
369
- * Gets the number of times next_token() was called.
370
- *
371
- * @since 0.4.1
372
- * @see self::next_token()
373
- * @deprecated Use {@see self::get_cursor_move_count()} instead.
374
- *
375
- * @return int Count of next_token() calls.
376
- */
377
- public function get_next_token_count (): int {
378
- _deprecated_function ( __METHOD__ , 'Optimization Detective n.e.x.t ' , __CLASS__ . '::get_cursor_move_count() ' );
379
- return $ this ->next_token_count ;
380
- }
381
-
382
355
/**
383
356
* Updates or creates a new attribute on the currently matched tag with the passed value.
384
357
*
@@ -462,20 +435,6 @@ public function seek( $bookmark_name ): bool {
462
435
return $ result ;
463
436
}
464
437
465
- /**
466
- * Gets the number of times seek() was called.
467
- *
468
- * @since 0.4.1
469
- * @see self::seek()
470
- * @deprecated Use {@see self::get_cursor_move_count()} instead.
471
- *
472
- * @return int Count of seek() calls.
473
- */
474
- public function get_seek_count (): int {
475
- _deprecated_function ( __METHOD__ , 'Optimization Detective n.e.x.t ' , __CLASS__ . '::get_cursor_move_count() ' );
476
- return $ this ->seek_count ;
477
- }
478
-
479
438
/**
480
439
* Sets a bookmark in the HTML document.
481
440
*
0 commit comments