Community
Participate
Working Groups
I see code where <int value> + "" is used to produce a string instead of Integer.toString(<int value>). The latter is more readable and also faster.
Created attachment 178259 [details] Patch to fix the issue Replaces <int value>+"" with Integer.toString(<int value>).
Created attachment 178260 [details] mylyn/context/zip
I understand that you prefer a different style but unless there is a measurable performance impact I won't apply this change. The overhead for tracking the IP log entry outweighs the benefit.
The performance impact of using toString() instead of <string>+"" is measurable. The prior takes about half the time. But I doubt that it is noticeable in this case. I'm OK with resolving the bug as WONTFIX.