mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 00:15:02 -04:00
Avoid breaking json-io updates
This commit is contained in:
parent
9311a870e0
commit
cf2a4f306b
@ -28,7 +28,7 @@
|
||||
<classpathentry kind="lib" path="lib/ivy/jar/commons-vfs2.jar"/>
|
||||
<classpathentry kind="lib" path="lib/ivy/jar/commons-logging.jar"/>
|
||||
<classpathentry kind="lib" path="lib/ivy/jar/sevenzipjbinding.jar"/>
|
||||
<classpathentry kind="lib" path="lib/ivy/bundle/json-io.jar"/>
|
||||
<classpathentry kind="lib" path="lib/ivy/bundle/json-io.jar" sourcepath="lib/ivy/source/json-io.jar"/>
|
||||
<classpathentry kind="lib" path="lib/ivy/jar/jna-platform.jar"/>
|
||||
<classpathentry kind="lib" path="lib/ivy/jar/language-detector.jar"/>
|
||||
<classpathentry kind="lib" path="lib/ivy/bundle/guava.jar"/>
|
||||
|
2
ivy.xml
2
ivy.xml
@ -11,7 +11,7 @@
|
||||
<dependency org="com.ibm.icu" name="icu4j" rev="56.+" />
|
||||
<dependency org="org.jsoup" name="jsoup" rev="1.+" />
|
||||
<dependency org="org.tukaani" name="xz" rev="1.+" />
|
||||
<dependency org="com.cedarsoftware" name="json-io" rev="4.+" />
|
||||
<dependency org="com.cedarsoftware" name="json-io" rev="4.3.+" />
|
||||
<dependency org="com.googlecode.json-simple" name="json-simple" rev="1.+" />
|
||||
<dependency org="commons-io" name="commons-io" rev="2.+" />
|
||||
<dependency org="commons-net" name="commons-net" rev="3.+" />
|
||||
|
@ -1,5 +1,7 @@
|
||||
package net.filebot.util;
|
||||
|
||||
import static java.util.Collections.*;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import com.cedarsoftware.util.io.JsonReader;
|
||||
@ -7,7 +9,7 @@ import com.cedarsoftware.util.io.JsonReader;
|
||||
public class JsonUtilities {
|
||||
|
||||
public static Map<?, ?> readJson(String json) {
|
||||
return JsonReader.jsonToMaps(json);
|
||||
return (Map<?, ?>) JsonReader.jsonToJava(json, singletonMap(JsonReader.USE_MAPS, true));
|
||||
}
|
||||
|
||||
public static Object[] getArray(Object node, String key) {
|
||||
|
Loading…
Reference in New Issue
Block a user