summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/i18n
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-19 14:18:44 +0200
committerNoel Grandin <noel@peralex.com>2014-08-19 14:57:16 +0200
commit56ef5533fc1bce2134721ae64d4d6c18a3526a7a (patch)
treeeafaa8b3c9c7fd4bbeb03fdb1be091f94c870953 /qadevOOo/tests/java/ifc/i18n
parent1e6f0b2d8b35f856637eedf91729e522fcc633e8 (diff)
java: classes in java.lang package do not need to be fully qualified
Change-Id: I7b18f62336c3a8ca4c538b30ce04c99f202a4756
Diffstat (limited to 'qadevOOo/tests/java/ifc/i18n')
-rw-r--r--qadevOOo/tests/java/ifc/i18n/_XCharacterClassification.java4
-rw-r--r--qadevOOo/tests/java/ifc/i18n/_XTransliteration.java8
2 files changed, 6 insertions, 6 deletions
diff --git a/qadevOOo/tests/java/ifc/i18n/_XCharacterClassification.java b/qadevOOo/tests/java/ifc/i18n/_XCharacterClassification.java
index 2258c6b93383..4510c88f63cb 100644
--- a/qadevOOo/tests/java/ifc/i18n/_XCharacterClassification.java
+++ b/qadevOOo/tests/java/ifc/i18n/_XCharacterClassification.java
@@ -95,7 +95,7 @@ public class _XCharacterClassification extends MultiMethodTest {
/**
* Test calls the method for different locales. Then each result is compared
* with a string, converted to a upper case using
- * <code>java.lang.String</code> method <code>toUpperCase()</code>.<p>
+ * <code>String</code> method <code>toUpperCase()</code>.<p>
* Has <b> OK </b> status if string, returned by the method is equal to
* a string that is returned by String.toUpperCase() for all locales.
*/
@@ -124,7 +124,7 @@ public class _XCharacterClassification extends MultiMethodTest {
/**
* Test calls the method for different locales. Then each result is compared
* with a string, converted to a lower case using
- * <code>java.lang.String</code> method <code>toLowerCase()</code>.<p>
+ * <code>String</code> method <code>toLowerCase()</code>.<p>
* Has <b> OK </b> status if string, returned by the method is equal to
* a string that is returned by String.toLowerCase() for all locales.
*/
diff --git a/qadevOOo/tests/java/ifc/i18n/_XTransliteration.java b/qadevOOo/tests/java/ifc/i18n/_XTransliteration.java
index a300454cca81..055f9c43fa66 100644
--- a/qadevOOo/tests/java/ifc/i18n/_XTransliteration.java
+++ b/qadevOOo/tests/java/ifc/i18n/_XTransliteration.java
@@ -325,7 +325,7 @@ public class _XTransliteration extends MultiMethodTest {
int res = -666 ;
try {
res = oObj.compareSubstring(str1, p1, len1, str2, p2, len2);
- } catch (java.lang.NullPointerException e) {
+ } catch (NullPointerException e) {
log.println("Exception while method calling occurs :" + e);
}
@@ -342,7 +342,7 @@ public class _XTransliteration extends MultiMethodTest {
res = -666 ;
try {
res = oObj.compareSubstring(str2, p2, len2, str1, p1, len1);
- } catch (java.lang.NullPointerException e) {
+ } catch (NullPointerException e) {
log.println("Exception while method calling occurs :" + e);
}
@@ -411,7 +411,7 @@ public class _XTransliteration extends MultiMethodTest {
int res = -666 ;
try {
res = oObj.compareString(str1, str2);
- } catch (java.lang.NullPointerException e) {
+ } catch (NullPointerException e) {
log.println("Exception while method calling occurs :" + e);
}
@@ -428,7 +428,7 @@ public class _XTransliteration extends MultiMethodTest {
res = -666 ;
try {
res = oObj.compareString(str2, str1);
- } catch (java.lang.NullPointerException e) {
+ } catch (NullPointerException e) {
log.println("Exception while method calling occurs :" + e);
}