summaryrefslogtreecommitdiff
path: root/forms/qa
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-16 12:51:54 +0200
committerNoel Grandin <noel@peralex.com>2014-10-17 08:26:19 +0200
commit12b01b920f42666db84c8be1c9b6fd89a86eea4e (patch)
tree35a462009765a838e1381fe5d7614caed450daef /forms/qa
parent3beae0f05d1c8c976dfcebe02c8830752d708c74 (diff)
java: no need to call String.valueOf to append to a String
Change-Id: I5ef45b971d24dde814ab8cbb2e9503d9da4f0d73
Diffstat (limited to 'forms/qa')
-rw-r--r--forms/qa/integration/forms/FormControlTest.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/forms/qa/integration/forms/FormControlTest.java b/forms/qa/integration/forms/FormControlTest.java
index b7dacb7977bf..b02dc564a5fb 100644
--- a/forms/qa/integration/forms/FormControlTest.java
+++ b/forms/qa/integration/forms/FormControlTest.java
@@ -680,8 +680,8 @@ public class FormControlTest extends complexlib.ComplexTestCase implements XSQLE
if ( currentValue != requiredValue )
{
log.println( "wrong value of the " + fieldName + " field!" );
- log.println( " expected: " + String.valueOf( requiredValue ) );
- log.println( " found : " + String.valueOf( currentValue ) );
+ log.println( " expected: " + requiredValue );
+ log.println( " found : " + currentValue );
}
else
return true;
@@ -704,8 +704,8 @@ public class FormControlTest extends complexlib.ComplexTestCase implements XSQLE
if ( currentValue != requiredValue )
{
log.println( "wrong value of the " + fieldName + " field!" );
- log.println( " expected: " + String.valueOf( requiredValue ) );
- log.println( " found : " + String.valueOf( currentValue ) );
+ log.println( " expected: " + requiredValue );
+ log.println( " found : " + currentValue );
}
else
return true;
@@ -726,8 +726,8 @@ public class FormControlTest extends complexlib.ComplexTestCase implements XSQLE
if ( currentValue != requiredValue )
{
log.println( "wrong value of the " + fieldName + " field!" );
- log.println( " expected: " + String.valueOf( requiredValue ) );
- log.println( " found : " + String.valueOf( currentValue ) );
+ log.println( " expected: " + requiredValue );
+ log.println( " found : " + currentValue );
}
else
return true;