Code Duplication    Length = 7-7 lines in 2 locations

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

@@ 560-566 (lines=7) @@
557
			<h2><?php esc_html_e( 'Some updates are required', 'jetpack-beta' ); ?></h2>
558
		<?php
559
560
		if ( $should_update_stable_version ) {
561
			self::update_card(
562
				__( 'Latest Stable', 'jetpack-beta' ),
563
				__( 'Needs an update', 'jetpack-beta' ),
564
				self::update_action_url( 'stable', 'stable' )
565
			);
566
		}
567
		// Jetpack Dev Folder not up to date?
568
		if ( $should_update_dev_version ) {
569
			list( $dev_branch, $dev_section ) = Jetpack_Beta::get_branch_and_section_dev();
@@ 577-583 (lines=7) @@
574
			);
575
		}
576
577
		if ( $should_update_dev_to_master ) {
578
			self::update_card(
579
				__( 'Feature Branch was merged', 'jetpack-beta' ),
580
				__( 'Go back to Jetpack\'s Bleeding Edge version.', 'jetpack-beta' ),
581
				self::update_action_url( 'master', 'master' )
582
			);
583
		} ?>
584
		</div>
585
		<?php
586
	}