Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 784-786 (lines=3) @@
781
			$section
782
		);
783
784
		if ( $section !== 'stable' ) {
785
			update_option( self::$option_dev_installed, array( $branch, $section, self::get_manifest_data( $branch, $section ) ) );
786
		}
787
		return;
788
	}
789
@@ 791-793 (lines=3) @@
788
	}
789
790
	static function update_option( $branch, $section ) {
791
		if ( 'stable' !== $section ) {
792
			update_option( self::$option_dev_installed, array( $branch, $section, self::get_manifest_data( $branch, $section ) ) );
793
		}
794
		update_option( self::$option, array( $branch, $section ) );
795
	}
796