200201202203204205206207208209210
for (int i = 0; i < entries; i++) { try { String propName = reader.readStringImpl(); Object value = reader.readObject(); map.put(propName, value); } catch (EOFException e) {
242243244245246247248249250251252
List list = new ArrayList(); while (reader.remaining() != 0) { try { list.add(reader.readObject()); } catch (TypedBytesFormatException e) { throw new ConnectionScopedRuntimeException(e); }
285286287288289290291292293294295
327328329330331332333334335336337
194195196197198199200201202203204
236237238239240241242243244245246
286287288289290291292293294295296
328329330331332333334335336337338
949596979899100101102103104
136137138139140141142143144145146
List list = new ArrayList(); while (reader.remaining() != 0) { try { list.add(fixValue(reader.readObject())); } catch (TypedBytesFormatException e) { throw new ConnectionScopedRuntimeException(e); }