Fixed some imports

This commit is contained in:
Paul Trudel 2023-09-01 20:03:39 +00:00
parent 58458a22f7
commit 20890dc261
5 changed files with 5 additions and 6 deletions

View File

@ -1,6 +1,6 @@
package org.bigbluebutton.core2.voiceconf
import akka.actor.{ Actor, ActorLogging, FSM }
import org.apache.pekko.actor.{ Actor, ActorLogging, FSM }
import org.bigbluebutton.SystemConfiguration
sealed trait VoiceConfState

View File

@ -2,7 +2,6 @@ package org.bigbluebutton.common2.bus
import org.apache.pekko.actor.ActorRef
import org.apache.pekko.event.{ EventBus, LookupClassification }
import akka.actor.actorRef2Scala
case class OldReceivedJsonMessage(pattern: String, channel: String, msg: String)
case class OldIncomingJsonMessage(val topic: String, val payload: OldReceivedJsonMessage)

View File

@ -27,7 +27,7 @@ class BbbWebApiGWApp(
implicit val system = ActorSystem("bbb-web-common")
implicit val timeout = akka.util.Timeout(3 seconds)
implicit val timeout = org.apache.pekko.util.Timeout(3 seconds)
val log = Logging(system, getClass)

View File

@ -1,7 +1,7 @@
package org.bigbluebutton.api2.meeting
import akka.actor.Actor
import akka.actor.ActorLogging
import org.apache.pekko.actor.Actor
import org.apache.pekko.actor.ActorLogging
object MeetingActor {

View File

@ -1,6 +1,6 @@
package org.bigbluebutton.api2.meeting
import akka.actor.{ Actor, ActorLogging, Props }
import org.apache.pekko.actor.{ Actor, ActorLogging, Props }
import org.bigbluebutton.api.domain.UserSession
import org.bigbluebutton.api2.bus.MsgToAkkaAppsEventBus
import org.bigbluebutton.common2.domain.DefaultProps