Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 1667-1669 (lines=3) @@
1664
				// Show shipping excluding tax.
1665
				$shipping = wc_price( $this->get_shipping_total(), array('currency' => $this->get_currency()) );
1666
1667
				if ( $this->get_shipping_tax() != 0 && $this->get_prices_include_tax() ) {
1668
					$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 );
1669
				}
1670
1671
			} else {
1672
@@ 1676-1678 (lines=3) @@
1673
				// Show shipping including tax.
1674
				$shipping = wc_price( $this->get_shipping_total() + $this->get_shipping_tax(), array('currency' => $this->get_currency()) );
1675
1676
				if ( $this->get_shipping_tax() != 0 && ! $this->get_prices_include_tax() ) {
1677
					$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 );
1678
				}
1679
1680
			}
1681