Skip to content

Commit

Permalink
Remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
x86-39 committed Dec 1, 2022
1 parent c460b62 commit d11de19
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,10 @@ public boolean onCommand(CommandSender sender, Command cmd, String label, String
// Get first character
char firstChar = offset.charAt(0);
if (firstChar == '+') {
System.out.println("Offset is positive" + offset);
// Get the rest of the string
String rest = offset.substring(1);
// Get the number
int number = Integer.parseInt(rest);
System.out.println(number);
// Add the number to the date as minutes
date = date.plusMinutes(number);
} else if (firstChar == '-') {
Expand Down

0 comments on commit d11de19

Please sign in to comment.