fix getCodePoint method

This commit is contained in:
Nitser 2019-10-01 17:20:19 +03:00
parent 684c67fb85
commit bbfb4ea273
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());
+ (caller != null ? " of object " + caller.getClass().getSimpleName() : "");
}
/**