Code Duplication    Length = 3-3 lines in 2 locations

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

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