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