Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarsten Thoms2017-11-08 21:36:10 +0000
committerAlexander Kurtakov2017-11-09 10:54:30 +0000
commitcb39d43edc678e2eac00bb0f93f55a4e0b25dc4a (patch)
treeb3c87a33363f74d6ea2b5a48ff3aa8f558ae091e /tests/org.eclipse.compare.tests
parent5685ec90433f9182cb664c38b014b848da8a5495 (diff)
downloadeclipse.platform.team-cb39d43edc678e2eac00bb0f93f55a4e0b25dc4a.tar.gz
eclipse.platform.team-cb39d43edc678e2eac00bb0f93f55a4e0b25dc4a.tar.xz
eclipse.platform.team-cb39d43edc678e2eac00bb0f93f55a4e0b25dc4a.zip
Bump micro version for 4.8 Change-Id: Ib0bee17c6905c38cab7d4701f6339bfd63d9c45e Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
Diffstat (limited to 'tests/org.eclipse.compare.tests')
-rw-r--r--tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/TextMergeViewerTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/TextMergeViewerTest.java b/tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/TextMergeViewerTest.java
index 7097ae60c..9cd4cfd39 100644
--- a/tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/TextMergeViewerTest.java
+++ b/tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/TextMergeViewerTest.java
@@ -421,21 +421,21 @@ public class TextMergeViewerTest extends TestCase {
Object otherContributor = lineComparison
.get(OTHER_CONTRIBUTOR);
- if (thisContributor.equals(new Character('L'))) {
+ if (thisContributor.equals(Character.valueOf('L'))) {
assertEquals(thisLine, leftString);
assertEquals(otherContributor, new Character(
'R'));
assertEquals(otherLine, rightString);
} else {
assertEquals(thisContributor,
- new Character('R'));
+ Character.valueOf('R'));
assertEquals(thisLine, rightString);
assertEquals(otherContributor, new Character(
'L'));
assertEquals(otherLine, leftString);
}
- if (thisContributor.equals(new Character('L')))
+ if (thisContributor.equals(Character.valueOf('L')))
return new IRegion[] { new Region(0, 1),
new Region(1, 1) };

Back to the top