Skip to content

Commit

Permalink
Fixes coding issues.
Browse files Browse the repository at this point in the history
git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@269 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
lucboudreau committed Jul 20, 2009
1 parent 919835e commit 13155f6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/org/olap4j/driver/xmla/proxy/XmlaOlap4jHttpProxy.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,10 @@ public byte[] getResponse(URL url, String request)
// In order to prevent the JDK from keeping this connection
// in WAIT mode, we need to empty the error stream cache.
try {
final int espCode =
final int espCode =
((HttpURLConnection)urlConnection).getResponseCode();
InputStream errorStream =
((HttpURLConnection)urlConnection).getErrorStream();

final ByteArrayOutputStream baos =
new ByteArrayOutputStream();
final byte[] buf = new byte[1024];
Expand Down

0 comments on commit 13155f6

Please sign in to comment.