Skip to content

Commit

Permalink
Fix build under JDK 1.5
Browse files Browse the repository at this point in the history
git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@26 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
julianhyde committed Aug 15, 2007
1 parent 12500d1 commit b072f2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testsrc/org/olap4j/ConnectionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -966,10 +966,10 @@ public InputStream get(URL url, String request) throws IOException {
request, urlString, map, null);
return new ByteArrayInputStream(bytes);
} catch (ServletException e) {
throw new IOException(
throw new RuntimeException(
"Error while reading '" + url + "'", e);
} catch (SAXException e) {
throw new IOException(
throw new RuntimeException(
"Error while reading '" + url + "'", e);
}
}
Expand Down

0 comments on commit b072f2e

Please sign in to comment.