Code Duplication    Length = 4-4 lines in 4 locations

classes/fields/number.php 4 locations

@@ 449-452 (lines=4) @@
446
		    $thousands = '.';
447
		    $dot = ',';
448
	    }
449
	    elseif ( '9,999.99' == pods_v( static::$type . '_format', $options ) ) {
450
		    $thousands = ',';
451
		    $dot = '.';
452
	    }
453
	    elseif ( '9\'999.99' == pods_v( static::$type . '_format', $options ) ) {
454
		    $thousands = '\'';
455
		    $dot = '.';
@@ 453-456 (lines=4) @@
450
		    $thousands = ',';
451
		    $dot = '.';
452
	    }
453
	    elseif ( '9\'999.99' == pods_v( static::$type . '_format', $options ) ) {
454
		    $thousands = '\'';
455
		    $dot = '.';
456
	    }
457
	    elseif ( '9 999,99' == pods_v( static::$type . '_format', $options ) ) {
458
		    $thousands = ' ';
459
		    $dot = ',';
@@ 457-460 (lines=4) @@
454
		    $thousands = '\'';
455
		    $dot = '.';
456
	    }
457
	    elseif ( '9 999,99' == pods_v( static::$type . '_format', $options ) ) {
458
		    $thousands = ' ';
459
		    $dot = ',';
460
	    }
461
	    elseif ( '9999.99' == pods_v( static::$type . '_format', $options ) ) {
462
		    $thousands = '';
463
		    $dot = '.';
@@ 465-468 (lines=4) @@
462
		    $thousands = '';
463
		    $dot = '.';
464
	    }
465
	    elseif ( '9999,99' == pods_v( static::$type . '_format', $options ) ) {
466
		    $thousands = '';
467
		    $dot = ',';
468
	    }
469
	    else {
470
		    $thousands = $wp_locale->number_format[ 'thousands_sep' ];
471
		    $dot = $wp_locale->number_format[ 'decimal_point' ];