Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

Commit

Permalink
Merge pull request #12 from Synchroneyes/release
Browse files Browse the repository at this point in the history
trigger release
  • Loading branch information
Synchroneyes authored Sep 3, 2023
2 parents 5774b81 + 4e9ae60 commit 85178b6
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
package fr.synchroneyes.mineral.Utils;

import org.bukkit.Bukkit;

public class TimeConverter {
public static String intToString(int valeurEnSecondes) {
int minutes, secondes;
minutes = valeurEnSecondes / 60;
minutes = valeurEnSecondes / 60;
secondes = valeurEnSecondes % 60;
return String.format("%02d:%02d", minutes, secondes);
}
Expand Down

0 comments on commit 85178b6

Please sign in to comment.