Messaging: Remove unnecessary toString() and String.valueOf() calls

Change-Id: I5d5624386ba72b9e7074a7da909f78baaee73f75
This commit is contained in:
Michael W
2024-12-13 20:57:50 +01:00
parent 21cb2b6289
commit e35d385149
18 changed files with 40 additions and 34 deletions

View File

@@ -137,7 +137,7 @@ public class MmsUtils {
case MMS_REQUEST_NO_RETRY:
return "NO_RETRY";
default:
return String.valueOf(status) + " (check MmsUtils)";
return status + " (check MmsUtils)";
}
}