Merge pull request #46 from kemitix/kcr-39-unused-parameter

KCR39: regressions: MoveVariableInsideIf: method(): use parameter
This commit is contained in:
Paul Campbell 2017-05-29 14:08:13 +01:00 committed by GitHub
commit b205e01a72

View file

@ -33,7 +33,7 @@ class MoveVariableInsideIf {
private boolean condition; private boolean condition;
private String method(final String variable) { private String method(final String variable) {
return "value"; return "value: " + variable;
} }
/** /**