mirror of https://github.com/apache/activemq.git
remove 1.6 ism, let it compile with jdk 1.5
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1038996 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
00daefc58e
commit
fa6d939a2e
|
@ -118,7 +118,8 @@ public class FileSystemBlobStrategy implements BlobUploadStrategy, BlobDownloadS
|
|||
try {
|
||||
return new File(message.getURL().toURI());
|
||||
} catch (URISyntaxException e) {
|
||||
throw new IOException("Unable to open file for message " + message ,e);
|
||||
IOException ioe = new IOException("Unable to open file for message " + message);
|
||||
ioe.initCause(e);
|
||||
}
|
||||
}
|
||||
//replace all : with _ to make windows more happy
|
||||
|
|
Loading…
Reference in New Issue