Code Duplication    Length = 5-7 lines in 2 locations

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

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