Commit fcb120a3 authored by Skylot's avatar Skylot

core: suppress type error exception

parent 988628a2
...@@ -6,7 +6,11 @@ import jadx.core.utils.StringUtils; ...@@ -6,7 +6,11 @@ import jadx.core.utils.StringUtils;
import jadx.core.utils.Utils; import jadx.core.utils.Utils;
import jadx.core.utils.exceptions.JadxRuntimeException; import jadx.core.utils.exceptions.JadxRuntimeException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class TypeGen { public class TypeGen {
private static final Logger LOG = LoggerFactory.getLogger(TypeGen.class);
private TypeGen() { private TypeGen() {
} }
...@@ -59,7 +63,8 @@ public class TypeGen { ...@@ -59,7 +63,8 @@ public class TypeGen {
case OBJECT: case OBJECT:
case ARRAY: case ARRAY:
if (lit != 0) { if (lit != 0) {
throw new JadxRuntimeException("Wrong object literal: " + type + " = " + lit); LOG.warn("Wrong object literal: " + lit + " for type: " + type);
return Long.toString(lit);
} }
return "null"; return "null";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment