ignore errors during Manifest alterations, to prevent crashing of apktool

This commit is contained in:
Connor Tumbleson 2013-06-12 10:29:16 -05:00
parent 6df03fc81c
commit 6475ef8a77

View File

@ -182,8 +182,7 @@ final public class AndrolibResources {
StreamResult result = new StreamResult(new File(filePath));
transformer.transform(source, result);
} catch (SAXException | ParserConfigurationException | IOException | TransformerException ex) {
throw new AndrolibException(ex);
} catch (SAXException | ParserConfigurationException | IOException | TransformerException ignored) {
}
}
@ -226,8 +225,7 @@ final public class AndrolibResources {
StreamResult result = new StreamResult(new File(filePath));
transformer.transform(source, result);
} catch (SAXException | ParserConfigurationException | IOException | TransformerException ex) {
throw new AndrolibException(ex);
} catch (SAXException | ParserConfigurationException | IOException | TransformerException ignored) {
}
}
}
@ -268,8 +266,7 @@ final public class AndrolibResources {
StreamResult result = new StreamResult(new File(filePath));
transformer.transform(source, result);
} catch (SAXException | ParserConfigurationException | IOException | TransformerException ex) {
throw new AndrolibException(ex);
} catch (SAXException | ParserConfigurationException | IOException | TransformerException ignored) {
}
}
}