Skip to content

Commit 907bff1

Browse files
committed
fixup
1 parent fd30ff7 commit 907bff1

File tree

1 file changed

+1
-1
lines changed
  • x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/math

1 file changed

+1
-1
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/math/CopySign.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ EvalOperator.ExpressionEvaluator.Factory create(
5151
);
5252
}
5353

54-
private static final Map<DataType, CopySignFactoryProvider> FACTORY_PROVIDERS = Map.of(
54+
private static final Map<DataType, CopySignFactoryProvider> FACTORY_PROVIDERS = Map.ofEntries(
5555
Map.entry(DataType.FLOAT, CopySignFloatEvaluator.Factory::new),
5656
Map.entry(DataType.DOUBLE, CopySignDoubleEvaluator.Factory::new),
5757
Map.entry(DataType.LONG, CopySignLongEvaluator.Factory::new),

0 commit comments

Comments
 (0)