Skip to content

Commit

Permalink
Fixes all failing tests with a constructor for ParseTreeWriter that t…
Browse files Browse the repository at this point in the history
…akes a PrintWriter for argument.

git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@336 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
lucboudreau committed Aug 5, 2010
1 parent b94e089 commit 3df55a7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/org/olap4j/mdx/ParseTreeWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,15 @@ public class ParseTreeWriter {
private static final int INDENT = 4;
private static String bigString = " ";

/**
* Creates a ParseTreeWriter.
*
* @param pw Underlying writer
*/
public ParseTreeWriter(PrintWriter pw) {
this((Writer)pw);
}

/**
* Creates a ParseTreeWriter.
*
Expand Down

0 comments on commit 3df55a7

Please sign in to comment.