Skip to content

Commit 6d280c0

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 01dbc0e commit 6d280c0

File tree

1 file changed

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

1 file changed

+4
-7
lines changed

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

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,10 @@ EvalOperator.ExpressionEvaluator.Factory create(
6161

6262
private DataType dataType;
6363

64-
@FunctionInfo(
65-
description = """
66-
Returns a value with the magnitude of the first argument and the sign of the second argument.
67-
This function is similar to Java's Math.copySign(double magnitude, double sign) which is
68-
similar to `copysign` from [IEEE 754](https://en.wikipedia.org/wiki/IEEE_754).""",
69-
returnType = { "double", "integer", "long" }
70-
)
64+
@FunctionInfo(description = """
65+
Returns a value with the magnitude of the first argument and the sign of the second argument.
66+
This function is similar to Java's Math.copySign(double magnitude, double sign) which is
67+
similar to `copysign` from [IEEE 754](https://en.wikipedia.org/wiki/IEEE_754).""", returnType = { "double", "integer", "long" })
7168
public CopySign(
7269
Source source,
7370
@Param(

0 commit comments

Comments
 (0)