修改analysisJson方法的权限级别,改为public

This commit is contained in:
彭宇琦 2020-11-02 08:25:10 +08:00
parent bfb53a51a5
commit 0e5e111a91
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ public class JsonLocation extends AbstractLocation {
* @param text json文本
* @throws UndefinedElementException json中无元素信息时抛出的异常
*/
protected void analysisJson(String text) {
public void analysisJson(String text) {
//将文件解析成JSONObject类对象
JSONObject json = JSONObject.parseObject(text);