From 1c27f57b1a28074a50e05aaa73c47ef55127e318 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 6 Jun 2012 09:19:56 -0400 Subject: rename libre/apache-ant{-libre,} and add more optional dependencies --- libre/apache-ant-libre/ant_diagnostics.patch | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 libre/apache-ant-libre/ant_diagnostics.patch (limited to 'libre/apache-ant-libre/ant_diagnostics.patch') diff --git a/libre/apache-ant-libre/ant_diagnostics.patch b/libre/apache-ant-libre/ant_diagnostics.patch deleted file mode 100644 index 38148b45c..000000000 --- a/libre/apache-ant-libre/ant_diagnostics.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- a/src/main/org/apache/tools/ant/Diagnostics.java -+++ b/src/main/org/apache/tools/ant/Diagnostics.java -@@ -179,7 +179,10 @@ - * @param clazz the class to get the information from. - * @since Ant 1.8.0 - */ -- private static URL getClassLocation(Class clazz) { -+ private static URL getClassLocation(Class clazz) { -+ if (clazz.getProtectionDomain().getCodeSource() == null) { -+ return null; -+ } - return clazz.getProtectionDomain().getCodeSource().getLocation(); - } - -@@ -241,7 +244,7 @@ - } - Transformer transformer = null; - try { -- transformer = transformerFactory.newTransformer(); -+ transformer = transformerFactory.newTransformer(); - } catch (Exception e) { - // ignore - ignoreThrowable(e); -- cgit v1.2.3-2-g168b