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
Currently the codbase that I work on started to report an error message:
[info] compiling 2 Scala sources to /home/arne/proj/priceloop/nocode/cli/target/scala-2.13/classes ...
[error] /home/arne/proj/priceloop/nocode/cli/src/main/scala/helpers/IOCommand.scala:42:31: implicit error;
[error] !I deserializer: chameleon.Deserializer[java.lang.String, java.lang.String]
[error] chameleon.ext.jsoniter.jsoniterSerializerDeserializer invalid because
[error] !I evidence$1: com.github.plokhotnyuk.jsoniter_scala.core.JsonCodec[java.lang.String]
[error] val api = client.wire[Api[IO]]
This error message is incomprehensible. It vaguely hints that it has something to do with implicits, and then it says something about evidence by just listing a class name that doesn't tell me anything.
The text was updated successfully, but these errors were encountered:
This error message is coming from the scala compiler. We could add an ImplicitNotFound annotation to the serializer/deseerializer classes. It could help to make the message nicer and to suggest what to do.
Currently the codbase that I work on started to report an error message:
This error message is incomprehensible. It vaguely hints that it has something to do with implicits, and then it says something about
evidence
by just listing a class name that doesn't tell me anything.The text was updated successfully, but these errors were encountered: