去掉多余字符
This commit is contained in:
@ -260,7 +260,7 @@ public class UserServiceImpl implements IUserService
|
||||
}
|
||||
if (StringUtils.isNotEmpty(idsStr.toString()))
|
||||
{
|
||||
idsStr.substring(0, idsStr.length() - 1);
|
||||
return idsStr.substring(0, idsStr.length() - 1);
|
||||
}
|
||||
return idsStr.toString();
|
||||
}
|
||||
@ -282,7 +282,7 @@ public class UserServiceImpl implements IUserService
|
||||
}
|
||||
if (StringUtils.isNotEmpty(idsStr.toString()))
|
||||
{
|
||||
idsStr.substring(0, idsStr.length() - 1);
|
||||
return idsStr.substring(0, idsStr.length() - 1);
|
||||
}
|
||||
return idsStr.toString();
|
||||
}
|
||||
|
Reference in New Issue
Block a user