Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Struct should recursive inspect without outer = true.
Browse files Browse the repository at this point in the history
headius committed May 14, 2016
1 parent af01027 commit 1778c00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/RubyStruct.java
Original file line number Diff line number Diff line change
@@ -590,7 +590,7 @@ public RubyString inspect(final ThreadContext context) {
public IRubyObject call(IRubyObject obj, boolean recur) {
return inspectStruct(context, recur);
}
}, struct, "inspect", true);
}, struct, "inspect", false);
}

@JRubyMethod(name = {"to_a", "values"})

0 comments on commit 1778c00

Please sign in to comment.