summaryrefslogtreecommitdiff
path: root/jfreereport/patches/libloader-1.1.6-deprecated.patch
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2011-06-13 03:40:24 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2011-06-13 03:40:24 +0200
commitf3a2418c42208b76fcab9c88931824d6433379a7 (patch)
tree1298ec34f8c32961832cf306a3beedd1200eda8c /jfreereport/patches/libloader-1.1.6-deprecated.patch
parenta3e75ff235b3cd41f5887a72cd8c95a37bfbbdb0 (diff)
silence warnings in jfreereport
don't attempt to copy nonexisting file don't use deprecated version of function also get rid of unnecessary path-delimiter escapes in affected makefiles
Diffstat (limited to 'jfreereport/patches/libloader-1.1.6-deprecated.patch')
-rw-r--r--jfreereport/patches/libloader-1.1.6-deprecated.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/jfreereport/patches/libloader-1.1.6-deprecated.patch b/jfreereport/patches/libloader-1.1.6-deprecated.patch
new file mode 100644
index 0000000..c098906
--- /dev/null
+++ b/jfreereport/patches/libloader-1.1.6-deprecated.patch
@@ -0,0 +1,11 @@
+--- misc/libloader-1.1.6/source/org/pentaho/reporting/libraries/resourceloader/ResourceException.java 2010-04-27 16:07:00.000000000 +0200
++++ misc/build/libloader-1.1.6/source/org/pentaho/reporting/libraries/resourceloader/ResourceException.java 2011-06-13 02:00:46.000000000 +0200
+@@ -42,7 +42,7 @@
+ */
+ public ResourceException(final String message, final Exception ex)
+ {
+- super(message, ex);
++ super(message, (Throwable) ex);
+ }
+
+ /**