Skip to content

Commit b7fc33e

Browse files
committed
Remobing logging trait
1 parent 4955483 commit b7fc33e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/main/scala/com/johnsnowlabs/nlp/ParamsAndFeaturesReadable.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ import scala.collection.mutable.ArrayBuffer
3030
class FeaturesReader[T <: HasFeatures](
3131
baseReader: MLReader[T],
3232
onRead: (T, String, SparkSession) => Unit)
33-
extends MLReader[T]
34-
with Logging {
33+
extends MLReader[T] {
3534

3635
override def load(path: String): T = {
3736

src/test/scala/com/johnsnowlabs/nlp/annotators/er/EntityRulerTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ class EntityRulerTest extends AnyFlatSpec with SparkSessionTest {
851851
}
852852

853853
it should "serialize EntityRulerModel" taggedAs SlowTest in {
854-
//Should br run with Java 8 and Scala 2.12
854+
//Should be run with Java 8 and Scala 2.12
855855
val entityRuler = new EntityRulerApproach()
856856
.setInputCols("document", "token")
857857
.setOutputCol("entities")

0 commit comments

Comments
 (0)