I\'ve got the following line of code:
suffix = suffix.isEmpty() ? \"1\" : Integer.toString(Integer.parseInt(suffix)+1);
in a block where su
The int is an rvalue. Since it isn't bound to a variable you cannot use post-incrementation.
int