update 简化代码

有+号拼接字符串,toString可以不用写
This commit is contained in:
cxh 2024-05-28 13:56:05 +08:00
parent bfb05c977d
commit 940b2e5c77

View File

@ -105,7 +105,7 @@ public class SysLogininforServiceImpl implements ISysLogininforService {
if (msg == null) {
msg = "";
}
return "[" + msg.toString() + "]";
return "[" + msg + "]";
}
@Override