Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[truffle] Fix bug in binding to hash element
  • Loading branch information
pmurias committed Oct 22, 2019
1 parent bbad2b7 commit c9c0153
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -29,7 +29,8 @@ public Object atkey(String key) {
}

public Object bindkey(String key, Object value) {
return contents.put(key, value);
contents.put(key, value);
return value;
}

public int existskey(String key) {
Expand Down

0 comments on commit c9c0153

Please sign in to comment.