Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2017-07-12 17:16:20 +0000
committerLars Vogel2017-07-13 17:38:15 +0000
commit2a1936a0f33c26c9939fcd17184a709e4177b675 (patch)
treeb039e5cbf9240309083af2211443313057b535e5
parent911f582fe54c5511113f12b43435d963cbd09208 (diff)
downloadeclipse.platform.ui-2a1936a0f33c26c9939fcd17184a709e4177b675.tar.gz
eclipse.platform.ui-2a1936a0f33c26c9939fcd17184a709e4177b675.tar.xz
eclipse.platform.ui-2a1936a0f33c26c9939fcd17184a709e4177b675.zip
Bug 516530 - Use StringBuilder instead of StringBufferI20170713-2000
One more in org.eclipse.ui.tests Change-Id: I2a49917ac80236e96e54a297697c6efcb669aa98 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/releng/PluginActivationTests.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/releng/PluginActivationTests.java b/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/releng/PluginActivationTests.java
index edf541036f2..75a93e7c3ed 100644
--- a/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/releng/PluginActivationTests.java
+++ b/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/releng/PluginActivationTests.java
@@ -244,7 +244,7 @@ public class PluginActivationTests {
@Test
@Ignore("See Bug 516743")
public void pluginsWithoutOSGiServiceOrActivatorShouldNotActive() {
- StringBuffer buf = new StringBuffer();
+ StringBuilder buf = new StringBuilder();
for (String element : NOT_ACTIVE_BUNDLES) {
Bundle bundle = Platform.getBundle(element);
if (bundle == null) {

Back to the top