ICU-5787 Minor code cleanup

X-SVN-Rev: 22288
This commit is contained in:
John Emmons 2007-08-06 21:30:03 +00:00
parent ae617cbd3b
commit f53516fb63

View file

@ -359,7 +359,7 @@ void IntlTestDateTimePatternGeneratorAPI::testAPI(/*char *par*/)
UnicodeString randomSkeleton="";
int32_t len = rand() % 20;
for (int32_t j=0; j<len; ++j ) {
randomSkeleton += rand()%80;
randomSkeleton += (UChar)(rand()%80);
}
UnicodeString bestPattern = randDTGen->getBestPattern(randomSkeleton, status);
}