@@ -55,7 +55,7 @@ static Map<String, FieldSpecificMatcher> matchers(
5555 put ("unsigned_long" , new UnsignedLongMatcher (actualMappings , actualSettings , expectedMappings , expectedSettings ));
5656 put ("integer" , new IntegerMatcher (actualMappings , actualSettings , expectedMappings , expectedSettings ));
5757 put ("short" , new ShortMatcher (actualMappings , actualSettings , expectedMappings , expectedSettings ));
58- put ("byte" , new ByteMatcher ( actualMappings , actualSettings , expectedMappings , expectedSettings ));
58+ put ("byte" , new ByteMatcher (actualMappings , actualSettings , expectedMappings , expectedSettings ));
5959 put ("double" , new DoubleMatcher (actualMappings , actualSettings , expectedMappings , expectedSettings ));
6060 put ("float" , new FloatMatcher (actualMappings , actualSettings , expectedMappings , expectedSettings ));
6161 put ("half_float" , new HalfFloatMatcher (actualMappings , actualSettings , expectedMappings , expectedSettings ));
@@ -409,7 +409,12 @@ Object convert(Object value, Object nullValue) {
409409 }
410410
411411 class LongMatcher extends NumberMatcher {
412- LongMatcher (XContentBuilder actualMappings , Settings .Builder actualSettings , XContentBuilder expectedMappings , Settings .Builder expectedSettings ) {
412+ LongMatcher (
413+ XContentBuilder actualMappings ,
414+ Settings .Builder actualSettings ,
415+ XContentBuilder expectedMappings ,
416+ Settings .Builder expectedSettings
417+ ) {
413418 super (FieldType .LONG , actualMappings , actualSettings , expectedMappings , expectedSettings );
414419 }
415420
@@ -420,7 +425,12 @@ protected Object cast(Object value) {
420425 }
421426
422427 class IntegerMatcher extends NumberMatcher {
423- IntegerMatcher (XContentBuilder actualMappings , Settings .Builder actualSettings , XContentBuilder expectedMappings , Settings .Builder expectedSettings ) {
428+ IntegerMatcher (
429+ XContentBuilder actualMappings ,
430+ Settings .Builder actualSettings ,
431+ XContentBuilder expectedMappings ,
432+ Settings .Builder expectedSettings
433+ ) {
424434 super (FieldType .INTEGER , actualMappings , actualSettings , expectedMappings , expectedSettings );
425435 }
426436
@@ -431,7 +441,12 @@ protected Object cast(Object value) {
431441 }
432442
433443 class ShortMatcher extends NumberMatcher {
434- ShortMatcher (XContentBuilder actualMappings , Settings .Builder actualSettings , XContentBuilder expectedMappings , Settings .Builder expectedSettings ) {
444+ ShortMatcher (
445+ XContentBuilder actualMappings ,
446+ Settings .Builder actualSettings ,
447+ XContentBuilder expectedMappings ,
448+ Settings .Builder expectedSettings
449+ ) {
435450 super (FieldType .SHORT , actualMappings , actualSettings , expectedMappings , expectedSettings );
436451 }
437452
@@ -442,7 +457,12 @@ protected Object cast(Object value) {
442457 }
443458
444459 class ByteMatcher extends NumberMatcher {
445- ByteMatcher (XContentBuilder actualMappings , Settings .Builder actualSettings , XContentBuilder expectedMappings , Settings .Builder expectedSettings ) {
460+ ByteMatcher (
461+ XContentBuilder actualMappings ,
462+ Settings .Builder actualSettings ,
463+ XContentBuilder expectedMappings ,
464+ Settings .Builder expectedSettings
465+ ) {
446466 super (FieldType .BYTE , actualMappings , actualSettings , expectedMappings , expectedSettings );
447467 }
448468
@@ -453,7 +473,12 @@ protected Object cast(Object value) {
453473 }
454474
455475 class DoubleMatcher extends NumberMatcher {
456- DoubleMatcher (XContentBuilder actualMappings , Settings .Builder actualSettings , XContentBuilder expectedMappings , Settings .Builder expectedSettings ) {
476+ DoubleMatcher (
477+ XContentBuilder actualMappings ,
478+ Settings .Builder actualSettings ,
479+ XContentBuilder expectedMappings ,
480+ Settings .Builder expectedSettings
481+ ) {
457482 super (FieldType .DOUBLE , actualMappings , actualSettings , expectedMappings , expectedSettings );
458483 }
459484
@@ -464,7 +489,12 @@ protected Object cast(Object value) {
464489 }
465490
466491 class FloatMatcher extends NumberMatcher {
467- FloatMatcher (XContentBuilder actualMappings , Settings .Builder actualSettings , XContentBuilder expectedMappings , Settings .Builder expectedSettings ) {
492+ FloatMatcher (
493+ XContentBuilder actualMappings ,
494+ Settings .Builder actualSettings ,
495+ XContentBuilder expectedMappings ,
496+ Settings .Builder expectedSettings
497+ ) {
468498 super (FieldType .FLOAT , actualMappings , actualSettings , expectedMappings , expectedSettings );
469499 }
470500
0 commit comments