fix getCodePoint method
This commit is contained in:
parent
684c67fb85
commit
bbfb4ea273
|
|
@ -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());
|
||||
+ (caller != null ? " of object " + caller.getClass().getSimpleName() : "");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue