Skip to content
New issue

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

Add quick assist "Inline local variable" like Java editor provides #516

Closed
eric-milles opened this issue Mar 6, 2018 · 0 comments
Closed
Assignees
Milestone

Comments

@eric-milles
Copy link
Member

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";
}
@eric-milles eric-milles added this to the v3.0.0 milestone Mar 6, 2018
@eric-milles eric-milles modified the milestones: v3.0.0, v3.1.0 Apr 19, 2018
@eric-milles eric-milles removed this from the v3.1.0 milestone Aug 18, 2018
@eric-milles eric-milles added this to the v3.2.0 milestone Oct 17, 2018
@eric-milles eric-milles self-assigned this Dec 6, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant