office-gobmx/jfreereport/patches/libfonts-1.1.6-deprecated.patch
Christian Lohmaier 283022f9d9 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
2011-06-13 03:40:24 +02:00

11 lines
426 B
Diff

--- misc/libfonts-1.1.6/source/org/pentaho/reporting/libraries/fonts/FontException.java 2010-04-27 16:09:00.000000000 +0200
+++ misc/build/libfonts-1.1.6/source/org/pentaho/reporting/libraries/fonts/FontException.java 2011-06-13 02:04:51.000000000 +0200
@@ -39,7 +39,7 @@
*/
public FontException(final String message, final Exception ex)
{
- super(message, ex);
+ super(message, (Throwable) ex);
}
/**