1
0
mirror of https://e.coding.net/circlecloud/MiaoBoard.git synced 2024-11-22 01:49:05 +00:00

feat: 限制长度为36字符

Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
502647092 2016-12-13 19:46:40 +08:00
parent 00f4fa540a
commit ead0eae494

View File

@ -35,7 +35,7 @@ public class Replace {
}
private static String s(final String text) {
return StrKit.substring(text, 0, 38);
return StrKit.substring(text, 0, 36);
}
static class SimpleRelpace {