Remove initial values for Health sensor

For the first 120 (N - Window size), the monitoring is ignored
and stored the default values for health sensor.

As in the boot up, CPU utilization may be high because of all the
applications started initializing. Therefore, removing initial values
and monitoring the values for each health sensor till the window size
and updating the value in D-Bus.

Tested : Tested and verified in Facebook YosemiteV2 platform.

Signed-off-by: Jayashree Dhanapal <jayashree-d@hcl.com>
Change-Id: I60fc25219337607ec911c1f7f674303dcb8fb63c
diff --git a/healthMonitor.cpp b/healthMonitor.cpp
index 0255f5f..ec83ac5 100644
--- a/healthMonitor.cpp
+++ b/healthMonitor.cpp
@@ -378,12 +378,6 @@
         return;
     }
 
-    /* Initialize value queue with initial sensor reading */
-    for (int i = 0; i < sensorConfig.windowSize; i++)
-    {
-        valQueue.push_back(value);
-    }
-
     /* Initialize unit value (Percent) for utilization sensor */
     ValueIface::unit(ValueIface::Unit::Percent);