summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--features/org.yocto.bc/feature.xml6
-rw-r--r--plugins/org.yocto.remote.utils/src/org/yocto/remote/utils/Activator.java8
2 files changed, 0 insertions, 14 deletions
diff --git a/features/org.yocto.bc/feature.xml b/features/org.yocto.bc/feature.xml
index 18c7a58..dc31a18 100644
--- a/features/org.yocto.bc/feature.xml
+++ b/features/org.yocto.bc/feature.xml
@@ -46,10 +46,4 @@
version="0.0.0"
unpack="false"/>
- <plugin
- id="org.yocto.sdk.ide"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
</feature>
diff --git a/plugins/org.yocto.remote.utils/src/org/yocto/remote/utils/Activator.java b/plugins/org.yocto.remote.utils/src/org/yocto/remote/utils/Activator.java
index 70fca07..da66a3e 100644
--- a/plugins/org.yocto.remote.utils/src/org/yocto/remote/utils/Activator.java
+++ b/plugins/org.yocto.remote.utils/src/org/yocto/remote/utils/Activator.java
@@ -10,12 +10,8 @@
*******************************************************************************/
package org.yocto.remote.utils;
-import java.util.logging.Logger;
-
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
-import org.yocto.sdk.ide.preferences.LoggerConstants;
-import org.yocto.sdk.ide.utils.YoctoSDKUtils;
/**
* The activator class controls the plug-in life cycle
@@ -27,7 +23,6 @@ public class Activator extends AbstractUIPlugin {
// The shared instance
private static Activator plugin;
- public static Logger logger ;
/**
* The constructor
@@ -43,8 +38,6 @@ public class Activator extends AbstractUIPlugin {
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
- logger = YoctoSDKUtils.registerLogger(LoggerConstants.RU_LOGGER_NAME, LoggerConstants.RU_LOG_FILE) ;
-
}
/*
@@ -55,7 +48,6 @@ public class Activator extends AbstractUIPlugin {
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
- YoctoSDKUtils.unRegisterLogger(logger, LoggerConstants.RU_LOG_FILE) ;
}
/**