]> granicus.if.org Git - icu/commitdiff
ICU-11540 Fixed a serialization coverage test problem introduced by the recent fix...
authorYoshito Umaoka <y.umaoka@gmail.com>
Mon, 23 Feb 2015 10:32:00 +0000 (10:32 +0000)
committerYoshito Umaoka <y.umaoka@gmail.com>
Mon, 23 Feb 2015 10:32:00 +0000 (10:32 +0000)
X-SVN-Rev: 37050

icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/CoverageTest.java

index dba46335bd36a3e0489d623444abda2a9e3754d1..f5581f10451227b209570465bafa19909fe585b4 100644 (file)
@@ -137,7 +137,7 @@ public class CoverageTest extends CompatibilityTest implements URLHandler.URLVis
         int ix = str.lastIndexOf(".class");
         
         if (ix >= 0) {
-            String className = "com.ibm.icu" + str.substring(0, ix).replace('/', '.');
+            String className = "com.ibm.icu." + str.substring(0, ix).replace('/', '.');
             
             // Skip things in com.ibm.icu.dev; they're not relevant.
             if (className.startsWith("com.ibm.icu.dev.")) {