in src/main/java/org/apache/sling/hapi/impl/HApiUtilImpl.java [346:356]
public static TypesCache getInstance(HApiUtil hApiUtil) {
if (null == singleton) {
singleton = new TypesCache(hApiUtil);
LOG.debug("Created new cache instance");
} else {
singleton.hApiUtil = hApiUtil;
}
LOG.debug("type cache singleton: {}", singleton);
return singleton;
}