...
Code Block | ||
---|---|---|
| ||
public void app_exassignNocontrol(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 |
...