Skip to content

Commit

Permalink
Fix Scalafix
Browse files Browse the repository at this point in the history
  • Loading branch information
danicheg committed Apr 26, 2024
1 parent 4aeab7d commit cd75581
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@ private[http2] class MockStreamManager() extends StreamManager {

override def get(streamId: Int): Option[StreamState] = None

override def drain(lastHandledOutboundStream: Int, reason: Http2SessionException): Future[Unit] =
???
override def drain(
lastHandledOutboundStream: Int,
reason: Http2SessionException
): Future[Unit] = ???

override def rstStream(cause: Http2StreamException): MaybeError = Continue

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@ private[http2] class MockTools(isClient: Boolean) extends SessionCore {
override def invokeDrain(gracePeriod: Duration): Unit =
drainGracePeriod = Some(gracePeriod)

override def invokeGoAway(lastHandledOutboundStream: Int, reason: Http2SessionException): Unit =
???
override def invokeGoAway(
lastHandledOutboundStream: Int,
reason: Http2SessionException
): Unit = ???

override def invokeShutdownWithError(ex: Option[Throwable], phase: String): Unit = ???
}

0 comments on commit cd75581

Please sign in to comment.