Code Duplication    Length = 5-7 lines in 2 locations

modules/related-posts/jetpack-related-posts.php 2 locations

@@ 1598-1602 (lines=5) @@
1595
		}
1596
		if ( $style ) {
1597
			if ( $this->_citations_enabled ) {
1598
				if ( is_rtl() ) {
1599
					wp_enqueue_style( 'jetpack_related-posts', plugins_url( 'rtl/auto-citations-rtl.css', __FILE__ ), array(), self::VERSION );
1600
				} else {
1601
					wp_enqueue_style( 'jetpack_related-posts', plugins_url( 'auto-citations.css', __FILE__ ), array(), self::VERSION );
1602
				}
1603
			} else {
1604
				if ( is_rtl() ) {
1605
					wp_enqueue_style( 'jetpack_related-posts', plugins_url( 'rtl/related-posts-rtl.css', __FILE__ ), array(), self::VERSION );
@@ 1603-1609 (lines=7) @@
1600
				} else {
1601
					wp_enqueue_style( 'jetpack_related-posts', plugins_url( 'auto-citations.css', __FILE__ ), array(), self::VERSION );
1602
				}
1603
			} else {
1604
				if ( is_rtl() ) {
1605
					wp_enqueue_style( 'jetpack_related-posts', plugins_url( 'rtl/related-posts-rtl.css', __FILE__ ), array(), self::VERSION );
1606
				} else {
1607
					wp_enqueue_style( 'jetpack_related-posts', plugins_url( 'related-posts.css', __FILE__ ), array(), self::VERSION );
1608
				}
1609
			}
1610
		}
1611
	}
1612