From 198342459760d3afa892b299ff30cdc3a0bb6035 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim Date: Sun, 16 Jun 2019 02:01:56 -0400 Subject: [PATCH] Remove `@usecase` in scaladoc They are deprecated -- and are crashing scaladoc --- src/main/scala/slick/migration/api/Migration.scala | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/src/main/scala/slick/migration/api/Migration.scala b/src/main/scala/slick/migration/api/Migration.scala index e83631f0..bd1ecf7b 100644 --- a/src/main/scala/slick/migration/api/Migration.scala +++ b/src/main/scala/slick/migration/api/Migration.scala @@ -14,16 +14,9 @@ trait Migration { object Migration { implicit class MigrationConcat[M <: Migration](m: M) { /** - * - * @usecase def &(n: ReversibleMigration): ReversibleMigrationSeq - * Append a [[ReversibleMigration]] to form either a - * [[ReversibleMigrationSeq]] if the left side of `&` is also a [[ReversibleMigration]]; - * or else a plain [[MigrationSeq]] - * @param n the [[ReversibleMigration]] to append - * @example {{{ val combined = mig1 & mig2 & mig3 }}} - * - * @usecase def &(n: Migration): MigrationSeq * Append another [[Migration]] to form a [[MigrationSeq]] + * If both sides are [[ReversibleMigration]]s then a [[ReversibleMigrationSeq]] + * is returned. * @param n the [[Migration]] to append * @example {{{ val combined = mig1 & mig2 & mig3 }}} */