Add wrapper a wrapper function to get chunk of data from a content to the ExtractionsService

This commit is contained in:
Maschell 2019-04-06 16:50:36 +02:00
parent 4f2d811b69
commit 847ed71ae1

View File

@ -166,4 +166,8 @@ public final class ExtractionService {
}
public byte[] getBytesFromContent(Content c, long offset, long size) throws IOException {
return getDataProvider().getChunkFromContent(c, offset, (int) size);
}
}