Remove prefetch bit.

The comments around the job indicate that this is not a prefetch job.
Removing the prefetch bit to avoid potential issues due to the change in
prefetch job management.

Bug: 194532703
Test: N/A
Change-Id: Icef36407156ad1c69e6bcb61acb40b3a0f178c4a
diff --git a/startop/iorap/src/com/google/android/startop/iorap/IorapForwardingService.java b/startop/iorap/src/com/google/android/startop/iorap/IorapForwardingService.java
index 1a0e526..cda5b7a 100644
--- a/startop/iorap/src/com/google/android/startop/iorap/IorapForwardingService.java
+++ b/startop/iorap/src/com/google/android/startop/iorap/IorapForwardingService.java
@@ -555,7 +555,6 @@
 
             JobInfo.Builder builder = new JobInfo.Builder(JOB_ID_IORAPD, IORAPD_COMPONENT_NAME);
             builder.setPeriodic(JOB_INTERVAL_MS);
-            builder.setPrefetch(true);
 
             builder.setRequiresCharging(true);
             builder.setRequiresDeviceIdle(true);