ICU-8710 One more Java compiler warning fix for ICU4J 4.8.1

X-SVN-Rev: 30359
This commit is contained in:
Yoshito Umaoka 2011-07-14 22:50:51 +00:00
parent 05a386320e
commit b9500da3b5

View file

@ -60,6 +60,9 @@ public class SpoofCheckerTest extends TestFmwk {
*/
public void TestUSpoof() {
SpoofChecker sc = new SpoofChecker.Builder().build();
if (sc == null) {
errln("FAIL: null SpoofChecker");
}
}
/*
@ -71,7 +74,6 @@ public class SpoofCheckerTest extends TestFmwk {
logln("Skip this test case because of the IBM Java 5 bug");
return;
}
SpoofChecker sc = new SpoofChecker.Builder().build();
String fileName;
Reader confusables;
Reader confusablesWholeScript;