mirror of
https://github.com/M66B/FairEmail.git
synced 2026-05-03 06:07:20 +02:00
Updated EvalEx methods
This commit is contained in:
@@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user