We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aba5ee1 commit e1eb251Copy full SHA for e1eb251
mllib/src/main/scala/org/apache/spark/mllib/export/ModelExport.scala
@@ -17,22 +17,6 @@
17
18
package org.apache.spark.mllib.export
19
20
-import java.io.OutputStream
21
-import java.io.FileOutputStream
22
-import java.io.File
23
-
24
-trait ModelExport {
25
26
- /**
27
- * Write the exported model to the output stream specified
28
- */
29
- def save(outputStream: OutputStream): Unit
30
31
32
- * Write the exported model to the local file specified
33
34
- def saveLocalFile(path: String): Unit = {
35
- save(new FileOutputStream(new File(path)));
36
- }
+private[mllib] trait ModelExport {
37
38
}
0 commit comments