Skip to content

Commit

Permalink
Fix checkFile exception.
Browse files Browse the repository at this point in the history
git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@294 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
julianhyde committed Dec 18, 2009
1 parent 58727bb commit 0f591e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/org/olap4j/driver/xmla/XmlaOlap4jConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,10 @@ abstract class XmlaOlap4jConnection implements OlapConnection {
serverUrl = serverUrl.replaceFirst(
":\\/\\/([^@]*@){0,1}",
"://"
.concat(map.get("user"))
.concat(":")
.concat(map.get("password")
.concat("@")));
+ map.get("user")
+ ":"
+ map.get("password")
+ "@");
}

// Initialize the SOAP cache if needed
Expand Down

0 comments on commit 0f591e0

Please sign in to comment.