Skip to content

Commit

Permalink
Simple regression in recent changes. Some trace instr will have a nul…
Browse files Browse the repository at this point in the history
…l name.

Guard against it since it is a normal value.
enebo committed Dec 14, 2017
1 parent 80f1f6e commit f39a9eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ public RubyEvent getEvent() {
}

public String getName() {
return StringSupport.byteListAsString(name);
return name == null ? null : StringSupport.byteListAsString(name);
}

public String getFilename() {

0 comments on commit f39a9eb

Please sign in to comment.