in src/main/java/org/apache/uima/json/jsoncas2/ser/CasDeserializer.java [127:139]
private CAS createCasOrGetFromContext(DeserializationContext aCtxt, TypeSystemDescription aTypes)
throws IOException {
CAS cas = getCas(aCtxt);
if (cas != null) {
return cas;
}
try {
return CasCreationUtils.createCas();
} catch (ResourceInitializationException e) {
throw new IOException(e);
}
}