I want to keep argument names of interface methods after compilation in Java.
Below is an example.
Before compiling:
interface IFoo {
void hello(String what);
}
After compiling using javac -g:vars IFoo.java
interface IFoo {
void hello(String str);
}
The argument what is renamed to str.
How can I keep the argument names?