Drop unused ActivityComponent (#3024)

This commit is contained in:
Naoki Takezoe
2022-03-28 22:24:34 +09:00
committed by GitHub
parent 3b607e74ed
commit bd06e6d4dc
2 changed files with 0 additions and 16 deletions

View File

@@ -1,20 +1,5 @@
package gitbucket.core.model
/**
* ActivityComponent has been deprecated, but keep it for binary compatibility.
*/
@deprecated("ActivityComponent has been deprecated, but keep it for binary compatibility.", "4.34.0")
trait ActivityComponent extends TemplateComponent { self: Profile =>
import profile.api._
import self._
lazy val Activities = TableQuery[Activities]
class Activities(tag: Tag) extends Table[Activity](tag, "ACTIVITY") with BasicTemplate {
def * = ???
}
}
case class Activity(
userName: String,
repositoryName: String,

View File

@@ -47,7 +47,6 @@ trait CoreProfile
with Profile
with AccessTokenComponent
with AccountComponent
with ActivityComponent
with CollaboratorComponent
with CommitCommentComponent
with CommitStatusComponent