Skip to content

Commit

Permalink
Run mvn spotless:apply
Browse files Browse the repository at this point in the history
  • Loading branch information
jbampton committed Oct 15, 2024
1 parent 2479b5d commit 047679e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ package org.apache.spark.sql.sedona_sql.expressions
import scala.reflect.runtime.universe.TypeTag

/**
* Implicit conversions from Java/Scala functions to [[InferableFunction]]. This should be used
* in conjunction with [[InferredExpression]] to make wrapping Java/Scala functions as catalyst
* Implicit conversions from Java/Scala functions to [[InferableFunction]]. This should be used in
* conjunction with [[InferredExpression]] to make wrapping Java/Scala functions as catalyst
* expressions much easier.
*/
object InferableFunctionConverter {
Expand Down Expand Up @@ -738,8 +738,8 @@ object InferableFunctionConverter {
// null values as function arguments. User needs to handle null arguments carefully in their function body when using
// these functions.

def nullTolerantInferableFunction1[R: InferableType, A1: InferableType](f: (A1) => R)(
implicit typeTag: TypeTag[(A1) => R]): InferableFunction = InferableFunction(
def nullTolerantInferableFunction1[R: InferableType, A1: InferableType](f: (A1) => R)(implicit
typeTag: TypeTag[(A1) => R]): InferableFunction = InferableFunction(
typeTag,
argExtractors => {
val func = f.asInstanceOf[(Any) => Any]
Expand Down

0 comments on commit 047679e

Please sign in to comment.