Method
readInner
(int len, Map<String, Object> map)
Source from the content-addressed store, hash-verified
| 157 | } |
| 158 | |
| 159 | protected int readInner(int len, Map<String, Object> map) throws IOException { |
| 160 | List<Map<String, Object>> list = new ArrayList<>(); |
| 161 | map.put("blocks", list); |
| 162 | while (len > 0) { |
| 163 | int p = pt; |
| 164 | readBlock(list); |
| 165 | len -= (pt - p); |
| 166 | } |
| 167 | return 0; |
| 168 | } |
| 169 | |
| 170 | protected int readFTYP(int len, Map<String, Object> map) throws IOException { |
| 171 | String info = ""; |
Tested by
no test coverage detected