This commit is contained in:
kunfei 2022-01-27 23:06:05 +08:00
parent 53131854ff
commit d76f720e45

View File

@ -577,7 +577,7 @@ public class QueryTTF {
* @return 返回bool查询结果
*/
public boolean inLimit(int code) {
return (limitMix <= code) && (code < limitMax);
return (limitMix <= code) && (code <= limitMax);
}
/**