Drop front end font icon code#1741
Conversation
WalkthroughThe recent updates involve deprecating the function Changes
Recent Review DetailsConfiguration used: CodeRabbit UI Files selected for processing (2)
Files skipped from review due to trivial changes (1)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
| * @since 5.5.1 | ||
| * @deprecated x.x | ||
| * @return void | ||
| */ | ||
| public static function maybe_include_font_icon_css() { | ||
| _deprecated_function( __METHOD__, 'x.x' ); | ||
| } |
There was a problem hiding this comment.
Replace 'x.x' with the actual version number in the deprecation annotation and method call.
- * @deprecated x.x
- _deprecated_function( __METHOD__, 'x.x' );
+ * @deprecated [actual_version_number]
+ _deprecated_function( __METHOD__, '[actual_version_number]' );Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.
| * @since 5.5.1 | |
| * @deprecated x.x | |
| * @return void | |
| */ | |
| public static function maybe_include_font_icon_css() { | |
| _deprecated_function( __METHOD__, 'x.x' ); | |
| } | |
| * @since 5.5.1 | |
| * @deprecated [actual_version_number] | |
| * @return void | |
| */ | |
| public static function maybe_include_font_icon_css() { | |
| _deprecated_function( __METHOD__, '[actual_version_number]' ); | |
| } |
This was here for supporting Signatures.
Version v3.0.4 of Signatures has been live now since March 28th so it should be safe to remove this logic.