Code Duplication    Length = 7-7 lines in 2 locations

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

@@ 689-695 (lines=7) @@
686
		<?php
687
688
		// Stable up to date?
689
		if ( $should_update_stable_version ) {
690
			self::update_card(
691
				__( 'Latest Stable', 'jetpack-beta' ),
692
				__( 'Needs an update', 'jetpack-beta' ),
693
				self::update_action_url( 'stable', 'stable' )
694
			);
695
		}
696
		// Jetpack Dev Folder not up to date?
697
		if ( $should_update_dev_version ) {
698
			list( $dev_branch, $dev_section ) = Jetpack_Beta::get_branch_and_section_dev();
@@ 706-712 (lines=7) @@
703
			);
704
		}
705
706
		if ( $should_update_dev_to_master ) {
707
			self::update_card(
708
				__( 'Feature Branch was merged', 'jetpack-beta' ),
709
				__( 'Go back to Jetpack\'s Bleeding Edge version.', 'jetpack-beta' ),
710
				self::update_action_url( 'master', 'master' )
711
			);
712
		}
713
		?>
714
		</div>
715
		<?php