Skip to content
Snippets Groups Projects
Commit 60e4fdfa authored by Josep del Rio's avatar Josep del Rio
Browse files

Remove redudant string conversions

In the review of ag/26174212, an unnecessary string conversion was
identified; this CL corrects that, plus two other instances in
the same function.

Bug: 314732730
Test: Presubmit
Change-Id: Id2b620088e12266f041be864271493ffe7e1a3b1
parent b24190c9
No related branches found
No related tags found
No related merge requests found
......@@ -121,9 +121,9 @@ public class Event {
public String toString() {
return "Event{id=" + mId
+ ", command=" + String.valueOf(mCommand)
+ ", name=" + String.valueOf(mName)
+ ", uniq=" + String.valueOf(mUniq)
+ ", command=" + mCommand
+ ", name=" + mName
+ ", uniq=" + mUniq
+ ", descriptor=" + Arrays.toString(mDescriptor)
+ ", vid=" + mVid
+ ", pid=" + mPid
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment