mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-03 13:44:40 +00:00
Updated EvalEx methods
This commit is contained in:
parent
05afe44aab
commit
f22d798ff9
1 changed files with 3 additions and 3 deletions
|
@ -211,7 +211,7 @@ public class ExpressionHelper {
|
|||
}
|
||||
|
||||
Log.i("EXPR header(" + parameterValues[0] + ")=" + TextUtils.join(", ", result));
|
||||
return new EvaluationValue(result, ExpressionConfiguration.defaultConfiguration());
|
||||
return EvaluationValue.of(result, ExpressionConfiguration.defaultConfiguration());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -244,7 +244,7 @@ public class ExpressionHelper {
|
|||
}
|
||||
|
||||
Log.i("EXPR message(" + parameterValues[0] + ")=" + TextUtils.join(", ", result));
|
||||
return new EvaluationValue(result, ExpressionConfiguration.defaultConfiguration());
|
||||
return EvaluationValue.of(result, ExpressionConfiguration.defaultConfiguration());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -374,7 +374,7 @@ public class ExpressionHelper {
|
|||
}
|
||||
|
||||
Log.i("EXPR jsoup(" + parameterValues[0] + ")=" + TextUtils.join(", ", result));
|
||||
return new EvaluationValue(result, ExpressionConfiguration.defaultConfiguration());
|
||||
return EvaluationValue.of(result, ExpressionConfiguration.defaultConfiguration());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue