Changeset 15461
- Timestamp:
- 10/29/20 16:55:05 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/ZipCache.java
r15460 r15461 217 217 = new LinkedHashMap<JarPathname, ByteArrayOutputStream>(); 218 218 219 boolean populated = false; 220 219 221 public InputStream getEntryAsInputStream(JarPathname entry) { 222 if (!populated) { 223 populateAllEntries(); 224 } 225 220 226 ByteArrayOutputStream bytes = contents.get(entry); 221 227 if (bytes != null) { … … 224 230 return null; 225 231 } 226 227 boolean populated = false;228 232 229 233 public ZipEntry getEntry(JarPathname entry) {
Note: See TracChangeset
for help on using the changeset viewer.