Skip to content

Commit fdaf26a

Browse files
committed
Made PipelineStage.transformSchema protected instead of private[ml]
1 parent f0e3b71 commit fdaf26a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mllib/src/main/scala/org/apache/spark/ml/Pipeline.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ abstract class PipelineStage extends Serializable with Logging {
3535
/**
3636
* Derives the output schema from the input schema and parameters.
3737
*/
38-
private[ml] def transformSchema(schema: StructType, paramMap: ParamMap): StructType
38+
protected def transformSchema(schema: StructType, paramMap: ParamMap): StructType
3939

4040
/**
4141
* Derives the output schema from the input schema and parameters, optionally with logging.

0 commit comments

Comments
 (0)