- Timestamp:
- 2026-01-14T21:50:13+01:00 (22 hours ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/CachedFile.java
r19374 r19463 243 243 */ 244 244 public byte[] getByteContent() throws IOException { 245 return getInputStream().readAllBytes(); 245 try (InputStream is = getInputStream()) { 246 return is.readAllBytes(); 247 } 246 248 } 247 249
Note:
See TracChangeset
for help on using the changeset viewer.
