Code Duplication    Length = 7-7 lines in 2 locations

projects/plugins/beta/class-jetpack-beta-admin.php 2 locations

@@ 669-675 (lines=7) @@
666
			<h2><?php esc_html_e( 'Some updates are required', 'jetpack-beta' ); ?></h2>
667
		<?php
668
669
		if ( $should_update_stable_version ) {
670
			self::update_card(
671
				__( 'Latest Stable', 'jetpack-beta' ),
672
				__( 'Needs an update', 'jetpack-beta' ),
673
				self::update_action_url( 'stable', 'stable' )
674
			);
675
		}
676
		// Jetpack Dev Folder not up to date?
677
		if ( $should_update_dev_version ) {
678
			list( $dev_branch, $dev_section ) = Jetpack_Beta::get_branch_and_section_dev();
@@ 686-692 (lines=7) @@
683
			);
684
		}
685
686
		if ( $should_update_dev_to_master ) {
687
			self::update_card(
688
				__( 'Feature Branch was merged', 'jetpack-beta' ),
689
				__( 'Go back to Jetpack\'s Bleeding Edge version.', 'jetpack-beta' ),
690
				self::update_action_url( 'master', 'master' )
691
			);
692
		}
693
		?>
694
		</div>
695
		<?php