Remove obsolete type capabilities

These are now detected by the new scala compiler and lead to compile
errors.
This commit is contained in:
Eike Kettner
2021-03-01 00:08:25 +01:00
parent 41bc33a73b
commit e6d9ce2c37
31 changed files with 40 additions and 42 deletions

View File

@ -82,7 +82,7 @@ object TextAnalyser {
/** Provides the nlp pipeline based on the configuration. */
private object Nlp {
def apply[F[_]: Concurrent: Timer: BracketThrow](
def apply[F[_]: Concurrent: Timer](
cfg: TextAnalysisConfig.NlpConfig
): F[Input[F] => F[Vector[NerLabel]]] =
cfg.mode match {