From 91735791f07362910deaa1fc742006664d984852 Mon Sep 17 00:00:00 2001 From: Fabrice Ducos Date: Sun, 23 Apr 2023 15:04:55 +0200 Subject: [PATCH] TODO: fixed a typo --- TODO | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TODO b/TODO index d8ed0e6f..1df866ac 100644 --- a/TODO +++ b/TODO @@ -10,7 +10,7 @@ with java.lang.StringBuilder Unfortunately, this class is not available in the JME environment. -A workaround would be to replaced the + concatenation with the String.concat() method, like this: +A workaround would be to replace the + concatenation with the String.concat() method, like this: - public String tojstring() { return typename() + ": " + Integer.toHexString(hashCode()); } + public String tojstring() { return typename().concat(": ").concat(Integer.toHexString(hashCode())); }