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
First of all thanks for posting this project.
I believe the time will be in better format if you change
String formattedTime = String.format("%02d:%02d", TimeUnit.MILLISECONDS.toMinutes(tickUpdateInMillis), TimeUnit.MILLISECONDS.toSeconds(tickUpdateInMillis) - TimeUnit.MINUTES .toSeconds(TimeUnit.MILLISECONDS.toHours(tickUpdateInMillis)));
to this
String formattedTime = String.format("%02d:%02d", TimeUnit.MILLISECONDS.toMinutes(tickUpdateInMillis), TimeUnit.MILLISECONDS.toSeconds(tickUpdateInMillis) - TimeUnit.MINUTES .toSeconds(TimeUnit.MILLISECONDS.toMinutes(tickUpdateInMillis)));
The text was updated successfully, but these errors were encountered:
Thank you for the feedback. Is it possible for you to add this as a PR?
Sorry, something went wrong.
No branches or pull requests
First of all thanks for posting this project.
I believe the time will be in better format if you change
String formattedTime = String.format("%02d:%02d", TimeUnit.MILLISECONDS.toMinutes(tickUpdateInMillis), TimeUnit.MILLISECONDS.toSeconds(tickUpdateInMillis) - TimeUnit.MINUTES .toSeconds(TimeUnit.MILLISECONDS.toHours(tickUpdateInMillis)));
to this
String formattedTime = String.format("%02d:%02d", TimeUnit.MILLISECONDS.toMinutes(tickUpdateInMillis), TimeUnit.MILLISECONDS.toSeconds(tickUpdateInMillis) - TimeUnit.MINUTES .toSeconds(TimeUnit.MILLISECONDS.toMinutes(tickUpdateInMillis)));
The text was updated successfully, but these errors were encountered: