mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-4900 fix build failure
X-SVN-Rev: 18733
This commit is contained in:
parent
9b0465f473
commit
6789e15b2c
1 changed files with 5 additions and 1 deletions
|
@ -1015,7 +1015,11 @@ public class TestFmwk extends AbstractTestLog {
|
|||
*/
|
||||
public static TestParams create(String[] args, PrintWriter log) {
|
||||
TestParams params = new TestParams();
|
||||
params.log = log == null ? new NullWriter() : new ASCIIWriter(log, true);
|
||||
if(log == null){
|
||||
params.log = new NullWriter();
|
||||
}else{
|
||||
params.log = new ASCIIWriter(log, true);
|
||||
}
|
||||
boolean usageError = false;
|
||||
String filter = null;
|
||||
int wx = 0; // write argets.
|
||||
|
|
Loading…
Add table
Reference in a new issue