You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Inline an implicit class and delete dead code
* Fix some warnings in serviceImpl, disable others
* Fix a few more warnings
* Fix a bunch of warnings in the tests
* Fix false-positive compiler warnings in macro-generated code
* Disable false-positive compiler warnings for Scala 2.12
Copy file name to clipboardexpand all lines: modules/channel/src/test/scala/higherkindness/mu/rpc/channel/metrics/MonitoringChannelInterceptorTests.scala
Copy file name to clipboardexpand all lines: modules/health-check-unary/src/main/scala/higherkindness/mu/rpc/healthcheck/unary/handler/HealthServiceImpl.scala
+6-2
Original file line number
Diff line number
Diff line change
@@ -42,13 +42,17 @@ abstract class AbstractHealthService[F[_]: Functor](
42
42
defclearStatus(service: HealthCheck):F[Unit] =
43
43
checkStatus.update(_ - service.nameService)
44
44
45
-
defcheckAll(empty: Empty.type):F[AllStatus] =
45
+
defcheckAll(empty: Empty.type):F[AllStatus] = {
46
+
val_= empty // just to suppress compiler warning about unused parameter
0 commit comments