This commit is contained in:
kunfei
2022-01-27 23:06:05 +08:00
parent 675f872d2b
commit 88e0525d33
@@ -577,7 +577,7 @@ public class QueryTTF {
* @return 返回bool查询结果
*/
public boolean inLimit(int code) {
return (limitMix <= code) && (code < limitMax);
return (limitMix <= code) && (code <= limitMax);
}
/**