Skip to content

Commit

Permalink
some improvements to the last commit
Browse files Browse the repository at this point in the history
git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@488 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
pstoellberger committed Jan 18, 2012
1 parent 33206a9 commit c75477a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/org/olap4j/driver/xmla/XmlaOlap4jCatalog.java
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public String getName() {
return name;
}

public List<String> getAvailableRoles() {
protected List<String> getAvailableRoles() {
return roles;
}

Expand Down
4 changes: 2 additions & 2 deletions src/org/olap4j/driver/xmla/XmlaOlap4jConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ abstract class XmlaOlap4jConnection implements OlapConnection {
* calls as part of &lt;PropertyList/&gt;.<br />
* Can be passed to connection via connection string properties.
*/
private Properties databaseProperties;
private final Properties databaseProperties;

private boolean autoCommit;
private boolean readOnly;
Expand Down Expand Up @@ -740,7 +740,7 @@ public String getRoleName() {
}

public List<String> getAvailableRoleNames() {
Set<String> roleNames = new HashSet<String>();
Set<String> roleNames = new LinkedHashSet<String>();
try {
for (Catalog catalog : getOlapCatalogs()) {
List<String> catalogRoles =
Expand Down

0 comments on commit c75477a

Please sign in to comment.