|
@@ -16,7 +16,7 @@ public class CheckVibrationDuration extends Operator {
|
|
|
|
|
|
@Override
|
|
|
public Object executeInner(Object[] list) throws Exception {
|
|
|
- double currentVibration = Double.parseDouble((String) list[0]);
|
|
|
+ double currentVibration = (Double) list[0];
|
|
|
String symbol = list[1].toString();
|
|
|
double targetVibration = (Double) list[2];
|
|
|
double durationSeconds = (Double) list[3];
|