Affects PMD Version: ???
Rule: CloseResource
Description:
false positive when resource included in return value.
Code Sample demonstrating the issue:
Spring MVC controller method:
public ResponseEntity<StreamingResponseBody> test() throws IOException { final InputStream is = Files.newInputStream(Paths.get("...")); return ResponseBody.ok(os -> { try { is.transferTo(os); } finally { is.close(); } }); }
Expected outcome:
Running PMD through: [CLI | Ant | Maven | Gradle | Designer | Other] ????
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4