13 lines
184 B
Markdown
13 lines
184 B
Markdown
|
|
||
|
Prevent the placement of variables or fields after methods in an expression.
|
||
|
|
||
|
Valid:
|
||
|
````
|
||
|
if (property && getProperty()) {}
|
||
|
````
|
||
|
|
||
|
Invalid:
|
||
|
````
|
||
|
if (getProperty() && property) {}
|
||
|
````
|