Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ private int readJSProperties(HippyMap object, byte endTag) {
if (key instanceof Number) {
object.pushObject(String.valueOf(key), value);
} else if (key instanceof String) {
if (key == "null") {
if ("null".equals(key)) {
object.pushObject(null, value);
} else {
object.pushObject((String) key, value);
Expand All @@ -263,7 +263,7 @@ private HippyMap readJSMap() {
key = key.toString();
Object value = readValue(StringLocation.MAP_VALUE, key);
if (value != Undefined) {
if (key == "null") {
if ("null".equals(key)) {
object.pushObject(null, value);
} else {
object.pushObject((String) key, value);
Expand Down
Loading