Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 1516-1518 (lines=3) @@
1513
				// Show shipping excluding tax.
1514
				$shipping = wc_price( $this->get_shipping_total(), array('currency' => $this->get_currency()) );
1515
1516
				if ( $this->get_shipping_tax() != 0 && $this->get_prices_include_tax() ) {
1517
					$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 );
1518
				}
1519
1520
			} else {
1521
@@ 1525-1527 (lines=3) @@
1522
				// Show shipping including tax.
1523
				$shipping = wc_price( $this->get_shipping_total() + $this->get_shipping_tax(), array('currency' => $this->get_currency()) );
1524
1525
				if ( $this->get_shipping_tax() != 0 && ! $this->get_prices_include_tax() ) {
1526
					$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 );
1527
				}
1528
1529
			}
1530