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.
Less verbose toString for TemporaryLocalVariable
Browse files Browse the repository at this point in the history
subbuss committed Oct 31, 2014
1 parent 4eae2a6 commit 701181e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -77,7 +77,7 @@ public Object retrieve(ThreadContext context, IRubyObject self, StaticScope curr

@Override
public String toString() {
return getName() + (producer == null ? "-unrecorded-" : "=["+ producer.getOperation() + "]" );
return getName() + (producer == null ? "" : "=["+ producer.getOperation() + "]" );
}

@Override

0 comments on commit 701181e

Please sign in to comment.