Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 1534-1536 (lines=3) @@
1531
				// Show shipping excluding tax.
1532
				$shipping = wc_price( $this->get_shipping_total(), array('currency' => $this->get_currency()) );
1533
1534
				if ( $this->get_shipping_tax() != 0 && $this->get_prices_include_tax() ) {
1535
					$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 );
1536
				}
1537
1538
			} else {
1539
@@ 1543-1545 (lines=3) @@
1540
				// Show shipping including tax.
1541
				$shipping = wc_price( $this->get_shipping_total() + $this->get_shipping_tax(), array('currency' => $this->get_currency()) );
1542
1543
				if ( $this->get_shipping_tax() != 0 && ! $this->get_prices_include_tax() ) {
1544
					$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 );
1545
				}
1546
1547
			}
1548