@@ -798,7 +798,8 @@ abstract class Expr internal constructor() {
798798 * @param second Numeric expression to add.
799799 * @return A new [Expr] representing the addition operation.
800800 */
801- @JvmStatic fun add (first : Expr , second : Expr ): Expr = FunctionExpr (" add" , evaluateAdd, first, second)
801+ @JvmStatic
802+ fun add (first : Expr , second : Expr ): Expr = FunctionExpr (" add" , evaluateAdd, first, second)
802803
803804 /* *
804805 * Creates an expression that adds numeric expressions with a constant.
@@ -807,7 +808,8 @@ abstract class Expr internal constructor() {
807808 * @param second Constant to add.
808809 * @return A new [Expr] representing the addition operation.
809810 */
810- @JvmStatic fun add (first : Expr , second : Number ): Expr = FunctionExpr (" add" , evaluateAdd, first, second)
811+ @JvmStatic
812+ fun add (first : Expr , second : Number ): Expr = FunctionExpr (" add" , evaluateAdd, first, second)
811813
812814 /* *
813815 * Creates an expression that adds a numeric field with a numeric expression.
@@ -883,7 +885,8 @@ abstract class Expr internal constructor() {
883885 * @return A new [Expr] representing the multiplication operation.
884886 */
885887 @JvmStatic
886- fun multiply (first : Expr , second : Expr ): Expr = FunctionExpr (" multiply" , evaluateMultiply, first, second)
888+ fun multiply (first : Expr , second : Expr ): Expr =
889+ FunctionExpr (" multiply" , evaluateMultiply, first, second)
887890
888891 /* *
889892 * Creates an expression that multiplies numeric expressions with a constant.
@@ -893,7 +896,8 @@ abstract class Expr internal constructor() {
893896 * @return A new [Expr] representing the multiplication operation.
894897 */
895898 @JvmStatic
896- fun multiply (first : Expr , second : Number ): Expr = FunctionExpr (" multiply" , evaluateMultiply, first, second)
899+ fun multiply (first : Expr , second : Number ): Expr =
900+ FunctionExpr (" multiply" , evaluateMultiply, first, second)
897901
898902 /* *
899903 * Creates an expression that multiplies a numeric field with a numeric expression.
0 commit comments