#*******************************************************************************
-#* Copyright (C) 2010-2012, International Business Machines Corporation and *
+#* Copyright (C) 2010-2013, International Business Machines Corporation and *
#* others. All Rights Reserved. *
#*******************************************************************************
-icu4j.plugin.impl.version.string=51.0.1
+icu4j.plugin.impl.version.string=51.1.0
copyright.eclipse=Licensed Materials - Property of IBM \n (C) Copyright IBM Corp. 2000, 2012. All Rights Reserved. \n IBM is a registered trademark of IBM Corp.
icu4j.data.version.number=51
UNICODE_6_1 = getInstance(6, 1, 0, 0);
UNICODE_6_2 = getInstance(6, 2, 0, 0);
- ICU_VERSION = getInstance(51, 0, 1, 0);
- ICU_DATA_VERSION = getInstance(51, 0, 1, 0);
+ ICU_VERSION = getInstance(51, 1, 0, 0);
+ ICU_DATA_VERSION = getInstance(51, 1, 0, 0);
UNICODE_VERSION = UNICODE_6_2;
UCOL_RUNTIME_VERSION = getInstance(7);
#*******************************************************************************
-#* Copyright (C) 2009-2012, International Business Machines Corporation and *
+#* Copyright (C) 2009-2013, International Business Machines Corporation and *
#* others. All Rights Reserved. *
#*******************************************************************************
# Version numbers, etc.
icu4j.spec.version = 51
-icu4j.impl.version = 51.0.1
+icu4j.impl.version = 51.1
icu4j.data.version = 51
current.year = 2012
default.exec.env = J2SE-1.5
/*
*******************************************************************************
- * Copyright (C) 2000-2012, International Business Machines Corporation and *
+ * Copyright (C) 2000-2013, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
}
public void TestSupplementary() {
- if (isICUVersionBefore(51, 0, 2)) { // ticket#8080
+ if (isICUVersionBefore(52, 0, 1)) { // ticket#8080
return;
}
int count = 0;
}
public void TestSupplementaryCanonical() {
- if (isICUVersionBefore(51, 0, 2)) { // ticket#8080
+ if (isICUVersionBefore(52, 0, 1)) { // ticket#8080
return;
}
int count = 0;
/*********************************************************************
- * Copyright (C) 2000-2012, International Business Machines Corporation and
+ * Copyright (C) 2000-2013, International Business Machines Corporation and
* others. All Rights Reserved.
*********************************************************************
*/
Date e = fmt.parse(s);
if (e.equals(DATA[i])) {
logln("Ok: " + DATA[i] + " -> " + s + " -> " + e);
- } else if (isICUVersionBefore(51, 0, 2)) { // until ticket #9043 fixes the ambiguous era problem
+ } else if (isICUVersionBefore(52, 0, 1)) { // until ticket #9043 fixes the ambiguous era problem
logln("Ambiguous parse fails: " + DATA[i] + " -> " + s + " -> " + e);
} else {
errln("FAIL: " + DATA[i] + " -> " + s + " -> " + e);
/**
*******************************************************************************
- * Copyright (C) 2000-2012, International Business Machines Corporation and
+ * Copyright (C) 2000-2013, International Business Machines Corporation and
* others. All Rights Reserved.
*******************************************************************************
*/
public void init() {
// TODO(Mark): Fix ticket #8989 (CLDR#4375), transliterate U+0970.
// Remove this method?
- minusDevAbbBefore51 = isICUVersionBefore(51, 0, 2) ? "-[\u0970]" : "";
+ minusDevAbbBefore51 = isICUVersionBefore(52, 0, 1) ? "-[\u0970]" : "";
}
//------------------------------------------------------------------