|
比如
if (c == 's') {
outs.append(notifications(account));
status = 0; }
else if (c == 'b') {
outs.append(newnotifications(account));
status = 0;
}
当}单独一行时提示 (如第二个语句) '}' sollte in derselben Zeile stehen.
当}写入上一行时提示 Multiple markers at this line
- '}' should be on a new line.
- '}' should be on the same line. |
|