We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When a local variable is selected in the Java editor, there is a quick assist to inline the variables value.
Consider the following:
void meth() { String str = "foo"; return str; }
After applying "Inline local variable" quick assist:
void meth() { return "foo"; }
The text was updated successfully, but these errors were encountered:
Add "Inline local variable" quick assist
b0b7179
#516
Fix some cases for "Inline local variable" quick assist
fe2f0b3
eric-milles
No branches or pull requests
When a local variable is selected in the Java editor, there is a quick assist to inline the variables value.
Consider the following:
After applying "Inline local variable" quick assist:
The text was updated successfully, but these errors were encountered: