Code Duplication    Length = 3-3 lines in 2 locations

includes/abstracts/abstract-wc-order.php 2 locations

@@ 1758-1760 (lines=3) @@
1755
				// Show shipping excluding tax.
1756
				$shipping = wc_price( $this->order_shipping, array('currency' => $this->get_order_currency()) );
1757
1758
				if ( $this->order_shipping_tax != 0 && $this->prices_include_tax ) {
1759
					$shipping .= apply_filters( 'woocommerce_order_shipping_to_display_tax_label', '&nbsp;<small class="tax_label">' . WC()->countries->ex_tax_or_vat() . '</small>', $this, $tax_display );
1760
				}
1761
1762
			} else {
1763
@@ 1767-1769 (lines=3) @@
1764
				// Show shipping including tax.
1765
				$shipping = wc_price( $this->order_shipping + $this->order_shipping_tax, array('currency' => $this->get_order_currency()) );
1766
1767
				if ( $this->order_shipping_tax != 0 && ! $this->prices_include_tax ) {
1768
					$shipping .= apply_filters( 'woocommerce_order_shipping_to_display_tax_label', '&nbsp;<small class="tax_label">' . WC()->countries->inc_tax_or_vat() . '</small>', $this, $tax_display );
1769
				}
1770
1771
			}
1772