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

Commit e74c8103 authored by Shuto Nagamatsu's avatar Shuto Nagamatsu
Browse files

Remove non-localized message

Remove non-localized english "code" from ImsException constructor.
Non-localized message causes user confusion.

Bug: 32792378
Change-Id: I0c71c35e7830db7de5b1d041211de54c92285b4d
parent 4a895309
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ public class ImsException extends Exception {
    }

    public ImsException(String message, int code) {
        super(message + ", code = " + code);
        super(message + "(" + code + ")");
        mCode = code;
    }