Bug 510679: (Javadoc typo, removed unused API filters, suppressed raw type warnings)
diff --git a/bundles/org.eclipse.equinox.ds/.settings/.api_filters b/bundles/org.eclipse.equinox.ds/.settings/.api_filters
deleted file mode 100644
index 3381035..0000000
--- a/bundles/org.eclipse.equinox.ds/.settings/.api_filters
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<component id="org.eclipse.equinox.ds" version="2">
-    <resource path="META-INF/MANIFEST.MF" type="org.apache.felix.scr.Component">
-        <filter id="305324134">
-            <message_arguments>
-                <message_argument value="org.apache.felix.scr.Component"/>
-                <message_argument value="org.eclipse.equinox.ds_1.5.0"/>
-            </message_arguments>
-        </filter>
-    </resource>
-    <resource path="META-INF/MANIFEST.MF" type="org.apache.felix.scr.Reference">
-        <filter id="305324134">
-            <message_arguments>
-                <message_argument value="org.apache.felix.scr.Reference"/>
-                <message_argument value="org.eclipse.equinox.ds_1.5.0"/>
-            </message_arguments>
-        </filter>
-    </resource>
-    <resource path="META-INF/MANIFEST.MF" type="org.apache.felix.scr.ScrService">
-        <filter id="305324134">
-            <message_arguments>
-                <message_argument value="org.apache.felix.scr.ScrService"/>
-                <message_argument value="org.eclipse.equinox.ds_1.5.0"/>
-            </message_arguments>
-        </filter>
-    </resource>
-</component>
diff --git a/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Component.java b/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Component.java
index ba7165c..f91c6b8 100644
--- a/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Component.java
+++ b/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Component.java
@@ -26,7 +26,7 @@
  * The <code>Component</code> interface represents a single component managed
  * by the Service Component Runtime. Management agents may access the Component
  * instances through the {@link ScrService}.
- * @deprecated  * @deprecated clients should use {@link org.osgi.service.component.runtime.dto.ComponentDescriptionDTO} instead.
+ * @deprecated clients should use {@link org.osgi.service.component.runtime.dto.ComponentDescriptionDTO} instead.
  */
 @Deprecated
 public interface Component {
@@ -207,6 +207,7 @@
 	 * are used to register the Component as a service and are returned by
 	 * the <code>ComponentContext.getProperties()</code> method.
 	 */
+	@SuppressWarnings("rawtypes")
 	Dictionary getProperties();
 
 	/**
diff --git a/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Reference.java b/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Reference.java
index 6decd81..11dfe8e 100644
--- a/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Reference.java
+++ b/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Reference.java
@@ -45,6 +45,7 @@
 	 * Returns an array of references to the services bound to this Reference
 	 * or <code>null</code> if no services are currently bound.
 	 */
+	@SuppressWarnings("rawtypes")
 	ServiceReference[] getServiceReferences();
 
 	/**