Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 1659-1661 (lines=3) @@
1656
				// Show shipping excluding tax.
1657
				$shipping = wc_price( $this->get_shipping_total(), array('currency' => $this->get_currency()) );
1658
1659
				if ( $this->get_shipping_tax() != 0 && $this->get_prices_include_tax() ) {
1660
					$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 );
1661
				}
1662
1663
			} else {
1664
@@ 1668-1670 (lines=3) @@
1665
				// Show shipping including tax.
1666
				$shipping = wc_price( $this->get_shipping_total() + $this->get_shipping_tax(), array('currency' => $this->get_currency()) );
1667
1668
				if ( $this->get_shipping_tax() != 0 && ! $this->get_prices_include_tax() ) {
1669
					$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 );
1670
				}
1671
1672
			}
1673