Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2018-04-26 19:36:29 +0000
committerslewis2018-04-26 19:36:29 +0000
commitf6848ce77fd780316123d1d20ef5b12a86bef797 (patch)
tree66b58a1de0890a106614dde68f36c76d2dad1efc /framework
parentce4318cdbbb7e1a47dc3c6d295117b254607fcd3 (diff)
downloadorg.eclipse.ecf-f6848ce77fd780316123d1d20ef5b12a86bef797.tar.gz
org.eclipse.ecf-f6848ce77fd780316123d1d20ef5b12a86bef797.tar.xz
org.eclipse.ecf-f6848ce77fd780316123d1d20ef5b12a86bef797.zip
Removed use of org.osgi.service.log.Logger from master branch. It was
added in error. Change-Id: I6e6c0f6cfdb16ffc8ab2ac88fb77cba4b0c6e4d6
Diffstat (limited to 'framework')
-rw-r--r--framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/SystemLogService.java22
-rw-r--r--framework/bundles/org.eclipse.ecf.remoteservice.rpc/.classpath1
2 files changed, 0 insertions, 23 deletions
diff --git a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/SystemLogService.java b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/SystemLogService.java
index 5524d06dd..7826b0891 100644
--- a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/SystemLogService.java
+++ b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/SystemLogService.java
@@ -13,10 +13,8 @@ package org.eclipse.ecf.core.util;
import java.text.SimpleDateFormat;
import java.util.Date;
-import org.osgi.framework.Bundle;
import org.osgi.framework.ServiceReference;
import org.osgi.service.log.LogService;
-import org.osgi.service.log.Logger;
/**
*
@@ -102,24 +100,4 @@ public class SystemLogService implements LogService {
doLog(sr, level, message, exception);
}
- public Logger getLogger(String name) {
- throw new UnsupportedOperationException();
- }
-
- public Logger getLogger(Class<?> clazz) {
- throw new UnsupportedOperationException();
- }
-
- public <L extends Logger> L getLogger(String name, Class<L> loggerType) {
- throw new UnsupportedOperationException();
- }
-
- public <L extends Logger> L getLogger(Class<?> clazz, Class<L> loggerType) {
- throw new UnsupportedOperationException();
- }
-
- public <L extends Logger> L getLogger(Bundle bundle, String name, Class<L> loggerType) {
- throw new UnsupportedOperationException();
- }
-
}
diff --git a/framework/bundles/org.eclipse.ecf.remoteservice.rpc/.classpath b/framework/bundles/org.eclipse.ecf.remoteservice.rpc/.classpath
index 64c5e31b7..c83506765 100644
--- a/framework/bundles/org.eclipse.ecf.remoteservice.rpc/.classpath
+++ b/framework/bundles/org.eclipse.ecf.remoteservice.rpc/.classpath
@@ -2,6 +2,5 @@
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
- <classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Back to the top