Example:
int[] elapsed = {1, 13, 052};
After the quick-fix that removes a leading zero is applied:
int[] elapsed = {1, 13, 52};
If it is an octal number (for example, after a variable inline), then you can use another quick-fix that converts octal to decimal:
int[] elapsed = {1, 13, 42};