mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
[Code Samples Inspection] Java > Data flow > Redundant local variable
This commit is contained in:
parent
e4a93ccf13
commit
f373440332
@ -73,8 +73,7 @@ public class DemoFacetEditorTab extends FacetEditorTab {
|
||||
*/
|
||||
@Override
|
||||
public boolean isModified() {
|
||||
boolean foo = !Comparing.equal(mySettings.getDemoFacetState(), myPath.getText().trim());
|
||||
return foo;
|
||||
return !Comparing.equal(mySettings.getDemoFacetState(), myPath.getText().trim());
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user