mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 16:02:32 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
24 lines
653 B
HTML
24 lines
653 B
HTML
<html>
|
|
<body>
|
|
Reports redundant method parameters that can be replaced with local variables.
|
|
<p>If all local usages of a parameter are preceded by assignments to that parameter, the
|
|
parameter can be removed and its usages replaced with local variables.
|
|
It makes no sense to have such a parameter, as values that are passed to it are overwritten.
|
|
Usually, the problem appears as a result of refactoring.</p>
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
void test(int p) {
|
|
p = 1;
|
|
System.out.print(p);
|
|
}
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
void test() {
|
|
int p = 1;
|
|
System.out.print(p);
|
|
}
|
|
</code></pre>
|
|
</body>
|
|
</html>
|