Code Duplication    Length = 4-4 lines in 3 locations

classes/fields/number.php 3 locations

@@ 351-354 (lines=4) @@
348
		if ( '9.999,99' == pods_v( static::$type . '_format', $options ) ) {
349
			$thousands = '.';
350
			$dot       = ',';
351
		} elseif ( '9,999.99' == pods_v( static::$type . '_format', $options ) ) {
352
			$thousands = ',';
353
			$dot       = '.';
354
		} elseif ( '9\'999.99' == pods_v( static::$type . '_format', $options ) ) {
355
			$thousands = '\'';
356
			$dot       = '.';
357
		} elseif ( '9 999,99' == pods_v( static::$type . '_format', $options ) ) {
@@ 357-360 (lines=4) @@
354
		} elseif ( '9\'999.99' == pods_v( static::$type . '_format', $options ) ) {
355
			$thousands = '\'';
356
			$dot       = '.';
357
		} elseif ( '9 999,99' == pods_v( static::$type . '_format', $options ) ) {
358
			$thousands = ' ';
359
			$dot       = ',';
360
		} elseif ( '9999.99' == pods_v( static::$type . '_format', $options ) ) {
361
			$thousands = '';
362
			$dot       = '.';
363
		} elseif ( '9999,99' == pods_v( static::$type . '_format', $options ) ) {
@@ 363-366 (lines=4) @@
360
		} elseif ( '9999.99' == pods_v( static::$type . '_format', $options ) ) {
361
			$thousands = '';
362
			$dot       = '.';
363
		} elseif ( '9999,99' == pods_v( static::$type . '_format', $options ) ) {
364
			$thousands = '';
365
			$dot       = ',';
366
		} else {
367
			$thousands = $wp_locale->number_format['thousands_sep'];
368
			$dot       = $wp_locale->number_format['decimal_point'];
369
		}//end if