Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-03-14 23:10:16 +0000
committerslewis2007-03-14 23:10:16 +0000
commitf3fe8b65cd62b8f28ddab488b787026f1558318d (patch)
treee945662e99cefb978a3e50b04ddd0a7cac8473b9 /providers/bundles/org.eclipse.ecf.provider.bittorrent
parent5dc6fe7effaec2be9be3294ad5d4ba2e392d24a8 (diff)
downloadorg.eclipse.ecf-f3fe8b65cd62b8f28ddab488b787026f1558318d.tar.gz
org.eclipse.ecf-f3fe8b65cd62b8f28ddab488b787026f1558318d.tar.xz
org.eclipse.ecf-f3fe8b65cd62b8f28ddab488b787026f1558318d.zip
Changes to remove references to Plugin class.
Diffstat (limited to 'providers/bundles/org.eclipse.ecf.provider.bittorrent')
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.bittorrent/src/org/eclipse/ecf/internal/provider/bittorrent/BitTorrentProviderPlugin.java56
1 files changed, 28 insertions, 28 deletions
diff --git a/providers/bundles/org.eclipse.ecf.provider.bittorrent/src/org/eclipse/ecf/internal/provider/bittorrent/BitTorrentProviderPlugin.java b/providers/bundles/org.eclipse.ecf.provider.bittorrent/src/org/eclipse/ecf/internal/provider/bittorrent/BitTorrentProviderPlugin.java
index 6b430b8a5..622de54bd 100644
--- a/providers/bundles/org.eclipse.ecf.provider.bittorrent/src/org/eclipse/ecf/internal/provider/bittorrent/BitTorrentProviderPlugin.java
+++ b/providers/bundles/org.eclipse.ecf.provider.bittorrent/src/org/eclipse/ecf/internal/provider/bittorrent/BitTorrentProviderPlugin.java
@@ -1,28 +1,28 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2007 Remy Suen, Composent Inc., and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Remy Suen <remy.suen@gmail.com> - initial API and implementation
- ******************************************************************************/
-package org.eclipse.ecf.internal.provider.bittorrent;
-
-import org.eclipse.bittorrent.TorrentConfiguration;
-import org.eclipse.core.runtime.Plugin;
-import org.osgi.framework.BundleContext;
-
-public final class BitTorrentProviderPlugin extends Plugin {
-
- static final String CONTAINER_ID = "ecf.filetransfer.bittorrent"; //$NON-NLS-1$
-
- static final String NAMESPACE_ID = "ecf.bittorrent"; //$NON-NLS-1$
-
- public void start(BundleContext context) throws Exception {
- super.start(context);
- TorrentConfiguration.setConfigurationPath(getStateLocation().toFile());
- }
-
-}
+/*******************************************************************************
+ * Copyright (c) 2006, 2007 Remy Suen, Composent Inc., and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Remy Suen <remy.suen@gmail.com> - initial API and implementation
+ ******************************************************************************/
+package org.eclipse.ecf.internal.provider.bittorrent;
+
+import org.eclipse.bittorrent.TorrentConfiguration;
+import org.eclipse.core.runtime.Plugin;
+import org.osgi.framework.BundleContext;
+
+public final class BitTorrentProviderPlugin extends Plugin {
+
+ static final String CONTAINER_ID = "ecf.filetransfer.bittorrent"; //$NON-NLS-1$
+
+ static final String NAMESPACE_ID = "ecf.bittorrent"; //$NON-NLS-1$
+
+ public void start(BundleContext context) throws Exception {
+ super.start(context);
+ TorrentConfiguration.setConfigurationPath(getStateLocation().toFile());
+ }
+
+}

Back to the top