Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorCarsten Hammer2020-05-17 15:42:04 +0000
committerKarsten Thoms2020-06-11 18:12:59 +0000
commit0a66c984bca3664deb0092d0f55877cf61f49ca9 (patch)
tree6a6b8ed908ccb78ab51cc723b5378dee1a4619bb /tests
parent6cdb003031eb739be2a7f0baaebdda3257b75893 (diff)
downloadeclipse.platform.team-0a66c984bca3664deb0092d0f55877cf61f49ca9.tar.gz
eclipse.platform.team-0a66c984bca3664deb0092d0f55877cf61f49ca9.tar.xz
eclipse.platform.team-0a66c984bca3664deb0092d0f55877cf61f49ca9.zip
Add missing overrideI20200612-0400I20200611-1800
Change-Id: I4fdb013bcd1a1693ba91895412bcac118fc16e6b Signed-off-by: Carsten Hammer <carsten.hammer@t-online.de>
Diffstat (limited to 'tests')
-rw-r--r--tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/Activator.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/Activator.java b/tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/Activator.java
index 34028c072..ec1dfa677 100644
--- a/tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/Activator.java
+++ b/tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/Activator.java
@@ -35,11 +35,13 @@ public class Activator extends Plugin {
public Activator() {
}
+ @Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
+ @Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);

Back to the top