Skip to content

Commit

Permalink
Remove @usecase in scaladoc
Browse files Browse the repository at this point in the history
They are deprecated -- and are crashing scaladoc
  • Loading branch information
nafg committed Jun 16, 2019
1 parent aefad02 commit 1983424
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions src/main/scala/slick/migration/api/Migration.scala
Expand Up @@ -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 }}}
*/
Expand Down

0 comments on commit 1983424

Please sign in to comment.