283022f9d9
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
11 lines
461 B
Diff
11 lines
461 B
Diff
--- misc/librepository-1.1.6/source/org/pentaho/reporting/libraries/repository/ContentIOException.java 2010-04-27 16:04:50.000000000 +0200
|
|
+++ misc/build/librepository-1.1.6/source/org/pentaho/reporting/libraries/repository/ContentIOException.java 2011-06-13 01:44:35.000000000 +0200
|
|
@@ -43,7 +43,7 @@
|
|
*/
|
|
public ContentIOException(final String message, final Exception ex)
|
|
{
|
|
- super(message, ex);
|
|
+ super(message, (Throwable) ex);
|
|
}
|
|
|
|
/**
|