Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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