Skip to content

Commit 30655f5

Browse files
committed
fix style problem
1 parent 2de848f commit 30655f5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mllib/src/main/scala/org/apache/spark/ml/util/SchemaUtils.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ private[spark] object SchemaUtils {
4949
* @param dataTypes required column data types
5050
*/
5151
def checkColumnTypes(
52-
schema: StructType,
53-
colName: String,
54-
dataTypes: Seq[DataType],
55-
msg: String = ""): Unit = {
52+
schema: StructType,
53+
colName: String,
54+
dataTypes: Seq[DataType],
55+
msg: String = ""): Unit = {
5656
val actualDataType = schema(colName).dataType
5757
val message = if (msg != null && msg.trim.length > 0) " " + msg else ""
5858
require(dataTypes.exists(actualDataType.equals),

0 commit comments

Comments
 (0)