Block Editor: Remove some errant debugging included in [43815].

Props bordoni.
See #45037.



git-svn-id: https://develop.svn.wordpress.org/branches/5.0@43816 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Gary Pendergast 2018-10-24 08:59:21 +00:00
parent 3609a27bb8
commit 9673e834e0

View File

@ -187,8 +187,7 @@ $styles = array(
if ( $editor_styles && current_theme_supports( 'editor-styles' ) ) {
foreach ( $editor_styles as $style ) {
if ( preg_match( '~^(https?:)?//~', $style ) ) {
//$response = wp_remote_get( $style );
var_dump( $response );
$response = wp_remote_get( $style );
if ( ! is_wp_error( $response ) ) {
$styles[] = array(
'css' => wp_remote_retrieve_body( $response ),