Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 1499-1501 (lines=3) @@
1496
				// Show shipping excluding tax.
1497
				$shipping = wc_price( $this->get_shipping_total(), array('currency' => $this->get_currency()) );
1498
1499
				if ( $this->get_shipping_tax() != 0 && $this->get_prices_include_tax() ) {
1500
					$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 );
1501
				}
1502
1503
			} else {
1504
@@ 1508-1510 (lines=3) @@
1505
				// Show shipping including tax.
1506
				$shipping = wc_price( $this->get_shipping_total() + $this->get_shipping_tax(), array('currency' => $this->get_currency()) );
1507
1508
				if ( $this->get_shipping_tax() != 0 && ! $this->get_prices_include_tax() ) {
1509
					$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 );
1510
				}
1511
1512
			}
1513