Skip to content

Commit

Permalink
MONDRIAN: Remove calls to PrintWriter.printf (not available in JDK 1.4).
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 10931]
  • Loading branch information
julianhyde committed Apr 21, 2008
1 parent dc6061b commit 29933d3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion testsrc/main/mondrian/rolap/MemberCacheControlTest.java
Expand Up @@ -151,7 +151,11 @@ private static PrintWriter printMemberProperties(
? number.intValue()
: Math.round(number.floatValue());
}
pw.printf(" [%s]=[%s]", name, value);
pw.print(" [");
pw.print(name);
pw.print("]=[");
pw.print(value);
pw.print("]");
}
pw.println("}");
return pw;
Expand Down

0 comments on commit 29933d3

Please sign in to comment.