Code Duplication    Length = 3-8 lines in 3 locations

projects/plugins/jetpack/class.jetpack-network.php 1 location

@@ 309-311 (lines=3) @@
306
		require_once JETPACK__PLUGIN_DIR . '_inc/genericons.php';
307
		jetpack_register_genericons();
308
309
		if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) {
310
			wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION );
311
		}
312
313
		add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) );
314
	}

projects/plugins/jetpack/class.jetpack.php 2 locations

@@ 1303-1305 (lines=3) @@
1300
		require_once JETPACK__PLUGIN_DIR . '_inc/social-logos.php';
1301
		jetpack_register_social_logos();
1302
1303
		if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) {
1304
			wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION );
1305
		}
1306
	}
1307
1308
	/**
@@ 4118-4125 (lines=8) @@
4115
	function admin_banner_styles() {
4116
		$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
4117
4118
		if ( ! wp_style_is( 'jetpack-dops-style' ) ) {
4119
			wp_register_style(
4120
				'jetpack-dops-style',
4121
				plugins_url( '_inc/build/admin.css', JETPACK__PLUGIN_FILE ),
4122
				array(),
4123
				JETPACK__VERSION
4124
			);
4125
		}
4126
4127
		wp_enqueue_style(
4128
			'jetpack',