change return string

This commit is contained in:
Nitser 2019-10-01 17:14:46 +03:00
parent c7fe4af9fc
commit 79bc62e647
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ public final class Lc {
@NonNull
public static String getCodePoint(@Nullable final Object caller, final String methodName) {
return methodName
+ (caller != null ? " of object " + caller.getClass().getSimpleName() + '(' + Integer.toHexString(caller.hashCode()) + ')' : "");
+ (caller != null ? " of object " + caller.getClass().getSimpleName());
}
/**