1
0
mirror of https://e.coding.net/circlecloud/MiaoBoard.git synced 2025-11-03 17:56:30 +00:00

fix: 调整字符串限制

Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
2016-08-16 15:07:39 +08:00
parent 862c752d5f
commit aab4867ee9
2 changed files with 2 additions and 2 deletions

View File

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