fix: 调整字符串限制

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

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>pw.yumc</groupId>
<artifactId>MiaoBoard</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
<name>MiaoBoard</name>
<build>
<finalName>${project.name}</finalName>

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 {