(File ionFile)
| 252 | } |
| 253 | |
| 254 | public IonDatagram load(File ionFile) |
| 255 | throws IonException, IOException |
| 256 | { |
| 257 | IonLoader loader = loader(); |
| 258 | IonDatagram dg = loader.load(ionFile); |
| 259 | |
| 260 | // Flush out any encoding problems in the data. |
| 261 | forceDeepMaterialization(dg); |
| 262 | |
| 263 | return dg; |
| 264 | } |
| 265 | |
| 266 | /** |
| 267 | * No op, removal pending the binary backed impl removal |
no test coverage detected