Pre Merge pull request !248 from CHY/dev

This commit is contained in:
CHY 2022-09-13 07:30:03 +00:00 committed by Gitee
commit 038ee283e7
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 3 additions and 5 deletions

View File

@ -313,7 +313,7 @@ public class Convert
* 转换为Integer数组<br>
*
* @param split 分隔符
* @param split 被转换的值
* @param str 被转换的值
* @return 结果
*/
public static Integer[] toIntArray(String split, String str)
@ -370,7 +370,7 @@ public class Convert
* 转换为String数组<br>
*
* @param split 分隔符
* @param split 被转换的值
* @param str 被转换的值
* @return 结果
*/
public static String[] toStrArray(String split, String str)
@ -962,9 +962,7 @@ public class Convert
c[i] = (char) (c[i] - 65248);
}
}
String returnString = new String(c);
return returnString;
return new String(c);
}
/**