Skip to content

Commit c89c4f7

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 643ba38 commit c89c4f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/ingest-common/src/main/java/org/elasticsearch/ingest/common/ConvertProcessor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public static Type fromString(String processorTag, String propertyName, String t
159159
}
160160

161161
private static boolean isExactIntegerFloat(Object value) {
162-
final float ABS_MAX_EXACT_FLOAT = (float) 0x1p24-1;
162+
final float ABS_MAX_EXACT_FLOAT = (float) 0x1p24 - 1;
163163
if (!(value instanceof Float)) {
164164
return false;
165165
}
@@ -168,7 +168,7 @@ private static boolean isExactIntegerFloat(Object value) {
168168
}
169169

170170
private static boolean isExactIntegerDouble(Object value) {
171-
final double ABS_MAX_EXACT_DOUBLE = 0x1p53-1;
171+
final double ABS_MAX_EXACT_DOUBLE = 0x1p53 - 1;
172172
if (!(value instanceof Double)) {
173173
return false;
174174
}

0 commit comments

Comments
 (0)