Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrabinowitz committed Aug 9, 2023
1 parent f09ab3a commit 146e792
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
import org.apache.spark.sql.internal.SQLConf;
import org.apache.spark.sql.sources.Filter;
import org.apache.spark.sql.types.Metadata;
import scala.collection.Iterator;

/** Spark related utilities */
public class SparkBigQueryUtil {
Expand Down Expand Up @@ -203,7 +202,7 @@ public static String getTableNameFromOptions(Map<String, String> options) {
public static <K, V> ImmutableMap<K, V> scalaMapToJavaMap(
scala.collection.immutable.Map<K, V> map) {
ImmutableMap.Builder<K, V> result = ImmutableMap.<K, V>builder();
map.foreach(entry -> result.put(entry._1(), entry._2());
map.foreach(entry -> result.put(entry._1(), entry._2()));
return result.build();
}

Expand Down

0 comments on commit 146e792

Please sign in to comment.