Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: aa1eac4f02d852eda4c552b32395949807911c64 (plain) (blame)
1
2
3
4
5
6
7
8
package org.eclipse.e4.core.internal.tests.contexts.inject;

import org.osgi.service.component.annotations.Component;

@Component(enabled = false)
public class TestServiceA implements TestService, TestOtherService {

}

Back to the top