Code Duplication    Length = 3-3 lines in 2 locations

packages/sync/legacy/class.jetpack-sync-module-full-sync.php 2 locations

@@ 225-227 (lines=3) @@
222
	private function get_content_range( $config ) {
223
		$range = array();
224
		// Only when we are sending the whole range do we want to send also the range
225
		if ( isset( $config['posts'] ) && $config['posts'] === true ) {
226
			$range['posts'] = $this->get_range( 'posts' );
227
		}
228
229
		if ( isset( $config['comments'] ) && $config['comments'] === true ) {
230
			$range['comments'] = $this->get_range( 'comments' );
@@ 229-231 (lines=3) @@
226
			$range['posts'] = $this->get_range( 'posts' );
227
		}
228
229
		if ( isset( $config['comments'] ) && $config['comments'] === true ) {
230
			$range['comments'] = $this->get_range( 'comments' );
231
		}
232
		return $range;
233
	}
234