Import dnet-pace-core module in this project and use it after renaming to dhp-pace-core #319

Merged
giambattista.bloisi merged 198 commits from beta_with_pace_core into beta 2023-07-11 14:03:15 +02:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 35008fdbf9 - Show all commits

View File

@ -97,7 +97,7 @@ public class MapDocumentUtil {
return m;
}
private static List<String> getJPathList(String path, String json, Type type) {
public static List<String> getJPathList(String path, String json, Type type) {
if (type == Type.List)
return JsonPath.read(json, path);
Object jresult;
@ -136,7 +136,7 @@ public class MapDocumentUtil {
}
private static String getJPathString(final String jsonPath, final String json) {
public static String getJPathString(final String jsonPath, final String json) {
Object o = JsonPath.read(json, jsonPath);
if (o instanceof String)