Code Duplication    Length = 4-4 lines in 3 locations

classes/fields/number.php 3 locations

@@ 457-460 (lines=4) @@
454
		if ( '9.999,99' == pods_v( static::$type . '_format', $options ) ) {
455
			$thousands = '.';
456
			$dot       = ',';
457
		} elseif ( '9,999.99' == pods_v( static::$type . '_format', $options ) ) {
458
			$thousands = ',';
459
			$dot       = '.';
460
		} elseif ( '9\'999.99' == pods_v( static::$type . '_format', $options ) ) {
461
			$thousands = '\'';
462
			$dot       = '.';
463
		} elseif ( '9 999,99' == pods_v( static::$type . '_format', $options ) ) {
@@ 463-466 (lines=4) @@
460
		} elseif ( '9\'999.99' == pods_v( static::$type . '_format', $options ) ) {
461
			$thousands = '\'';
462
			$dot       = '.';
463
		} elseif ( '9 999,99' == pods_v( static::$type . '_format', $options ) ) {
464
			$thousands = ' ';
465
			$dot       = ',';
466
		} elseif ( '9999.99' == pods_v( static::$type . '_format', $options ) ) {
467
			$thousands = '';
468
			$dot       = '.';
469
		} elseif ( '9999,99' == pods_v( static::$type . '_format', $options ) ) {
@@ 469-472 (lines=4) @@
466
		} elseif ( '9999.99' == pods_v( static::$type . '_format', $options ) ) {
467
			$thousands = '';
468
			$dot       = '.';
469
		} elseif ( '9999,99' == pods_v( static::$type . '_format', $options ) ) {
470
			$thousands = '';
471
			$dot       = ',';
472
		} else {
473
			$thousands = $wp_locale->number_format['thousands_sep'];
474
			$dot       = $wp_locale->number_format['decimal_point'];
475
		}//end if