}
}
public static void populateDescription(String path, byte[] contents, BaseFont font, FontDescription descr)
throws IOException, NoSuchFieldException, IllegalAccessException, DocumentException {
RandomAccessFileOrArray rf = null;
try {
rf = new RandomAccessFileOrArray(contents);
rf = populateDescription0(path, font, descr, rf);
} finally {
if (rf != null) {
try {
rf.close();
} catch (IOException e) {
// ignore
}
}
}