Skip to content

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

@eric-milles

Description

@eric-milles

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";
}

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions