Skip to content

Commit

Permalink
Remove final for AbstractModule (intel-analytics#3001)
Browse files Browse the repository at this point in the history
  • Loading branch information
Le-Zheng authored May 19, 2020
1 parent a5b2dce commit cea98df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ abstract class AbstractModule[A <: Activity: ClassTag, B <: Activity: ClassTag,
* @return self
*/
@deprecated("please use recommended saveModule(path, overWrite)", "0.3.0")
final def save(path : String, overWrite: Boolean = false) : this.type = {
def save(path : String, overWrite: Boolean = false) : this.type = {
this.clearState()
File.save(this, path, overWrite)
this
Expand Down

0 comments on commit cea98df

Please sign in to comment.