...
Code Block | ||
---|---|---|
| ||
public void assignNocontrol(BufferedReader reader) throws IOException{ String line; while ((line = reader.readLine()) != null) { // ... work with line } } |
Related Guidelines
Likely Incorrect Expression [KOA] | |
CWE-480, Use of incorrect operator |
Bibliography
§2.7.2, "Errors of Omission and Addition" |
...