We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Debug value for java.util.concurrent.TimeUnit.MINUTES wrongly displays SECONDS instead of desired MINUTES.
java.util.concurrent.TimeUnit.MINUTES
SECONDS
MINUTES
implicit val TimeUnitDebug: Debug[TimeUnit] = tu => Repr.Object( List("java", "util", "concurrent", "TimeUnit"), tu match { case TimeUnit.NANOSECONDS => "NANOSECONDS" case TimeUnit.MICROSECONDS => "MICROSECONDS" case TimeUnit.MILLISECONDS => "MILLISECONDS" case TimeUnit.SECONDS => "SECONDS" case TimeUnit.MINUTES => "SECONDS" // <<<<<<<<< HERE case TimeUnit.HOURS => "HOURS" case TimeUnit.DAYS => "DAYS" } )
The text was updated successfully, but these errors were encountered:
Fixed zio#1234: Corrected debug value for java.util.concurrent.TimeUn…
a3fa616
…it.MINUTES
82817cd
No branches or pull requests
Debug value for
java.util.concurrent.TimeUnit.MINUTES
wrongly displaysSECONDS
instead of desiredMINUTES
.The text was updated successfully, but these errors were encountered: