mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
Change "quick-fix" to "quick fix"
This is the actual feature name we use everywhere.
This commit is contained in:
parent
f2d534fa09
commit
8fda03526d
@ -6,7 +6,7 @@
|
|||||||
Comparing References Inspection Sample demonstrates the implementation of the [Code Inspections][docs:code_inspections] feature for Java classes.
|
Comparing References Inspection Sample demonstrates the implementation of the [Code Inspections][docs:code_inspections] feature for Java classes.
|
||||||
|
|
||||||
The plugin inspects your Java code and highlights any fragments containing the comparison of two `String` variables.
|
The plugin inspects your Java code and highlights any fragments containing the comparison of two `String` variables.
|
||||||
If such a check finds a comparison using the `==` or !`=` operators instead of the `.equals()` method, the plugin proposes a *quick-fix* action.
|
If such a check finds a comparison using the `==` or !`=` operators instead of the `.equals()` method, the plugin proposes a *quick fix* action.
|
||||||
|
|
||||||
### Extension Points
|
### Extension Points
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<body>
|
<body>
|
||||||
Reports usages of <code>==</code> and <code>!=</code> when comparing instances of String.
|
Reports usages of <code>==</code> and <code>!=</code> when comparing instances of String.
|
||||||
<p>
|
<p>
|
||||||
Quick-fix replaces operator with <code>equals()</code> call.
|
Quick fix replaces operator with <code>equals()</code> call.
|
||||||
</p>
|
</p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user