Skip to content

Commit

Permalink
Oops! System.out.println()!
Browse files Browse the repository at this point in the history
  • Loading branch information
ME1312 committed Dec 1, 2021
1 parent a11a57e commit 0fa2099
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,6 @@ private static UUID parseUUID(Object obj) {
Iterator<Long> i = ((Collection<Long>) obj).iterator();
return new UUID(i.next(), i.next());
} else if (obj != null) {
System.out.println(obj.toString());
return UUID.fromString(obj.toString());
} else {
return null;
Expand Down

0 comments on commit 0fa2099

Please sign in to comment.