Remove @Deprecated methods from IntentServiceController

PiperOrigin-RevId: 193374130
diff --git a/shadows/framework/src/main/java/org/robolectric/android/controller/IntentServiceController.java b/shadows/framework/src/main/java/org/robolectric/android/controller/IntentServiceController.java
index 912d9e8..bc3048a 100644
--- a/shadows/framework/src/main/java/org/robolectric/android/controller/IntentServiceController.java
+++ b/shadows/framework/src/main/java/org/robolectric/android/controller/IntentServiceController.java
@@ -76,15 +76,4 @@
     invokeWhilePaused("onHandleIntent", from(Intent.class, getIntent()));
     return this;
   }
-
-  /**
-   * @deprecated Use the appropriate builder in {@link org.robolectric.Robolectric} instead.
-   *
-   * This method will be removed in Robolectric 3.6.
-   */
-  @Deprecated
-  public IntentServiceController<T> withIntent(Intent intent) {
-    this.intent = intent;
-    return this;
-  }
 }