[java] update inspection description

GitOrigin-RevId: f524487c37ec1f181cc3583e48e12ec40c1b2124
This commit is contained in:
Roman Ivanov
2021-03-17 07:36:24 +01:00
committed by intellij-monorepo-bot
parent 8b78fa4ebd
commit 39d675a9bc

View File

@@ -15,8 +15,8 @@ Usually the problem appears as a result of refactoring.
</code></pre>
<p>will be replaced with</p>
<pre><code>
void test(int p) {
p = 1;
void test() {
int p = 1;
System.out.print(p);
}
</code></pre>