If you’re not using comments on the site, you can reduce HTTP requests by de-registering this script.
Add the following code snippet to your theme functions.php
file
function clean_header(){
wp_deregister_script( 'comment-reply' );
}
add_action('init','clean_header');