Skip to content

Commit f4d0f8c

Browse files
Remove deprecated code
Co-authored-by: adamsilverstein <[email protected]>
1 parent 0eb7883 commit f4d0f8c

File tree

1 file changed

+0
-41
lines changed

1 file changed

+0
-41
lines changed

plugins/optimization-detective/class-od-html-tag-processor.php

-41
Original file line numberDiff line numberDiff line change
@@ -188,18 +188,6 @@ final class OD_HTML_Tag_Processor extends WP_HTML_Tag_Processor {
188188
*/
189189
private $cursor_move_count = 0;
190190

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-
203191
/**
204192
* Finds the next tag.
205193
*
@@ -271,7 +259,6 @@ public function expects_closer( ?string $tag_name = null ): bool {
271259
*/
272260
public function next_token(): bool {
273261
$this->current_xpath = null; // Clear cache.
274-
++$this->next_token_count; // TODO: Remove when the deprecated get_next_token_count() method is removed.
275262
++$this->cursor_move_count;
276263
if ( ! parent::next_token() ) {
277264
$this->open_stack_tags = array();
@@ -365,20 +352,6 @@ public function get_cursor_move_count(): int {
365352
return $this->cursor_move_count;
366353
}
367354

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-
382355
/**
383356
* Updates or creates a new attribute on the currently matched tag with the passed value.
384357
*
@@ -462,20 +435,6 @@ public function seek( $bookmark_name ): bool {
462435
return $result;
463436
}
464437

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-
479438
/**
480439
* Sets a bookmark in the HTML document.
481440
*

0 commit comments

Comments
 (0)