in src/main/java/org/apache/sling/feature/extension/unpack/impl/installer/InstallUnpackArchiveTask.java [43:54]
public void execute(InstallationContext ctx) {
@SuppressWarnings("unchecked")
Map<String,Object> context = (Map<String, Object>) getResource().getAttribute("context");
if (context == null)
return;
try {
unpack.unpack(getResource().getInputStream(), context);
} catch (IOException e) {
logger.error("Problem unpacking {}", getResource().getURL(), e);
}
}