[apps/solver] Reove unneeded EquationStore::Error::VariableNameTooLong

This commit is contained in:
Léa Saviot
2018-11-13 10:23:01 +01:00
committed by Émilie Feral
parent 07d1aabb56
commit 056c78408d
2 changed files with 0 additions and 4 deletions

View File

@@ -21,7 +21,6 @@ public:
TooManyVariables = -2,
NonLinearSystem = -3,
RequireApproximateSolution = -4,
VariableNameTooLong = -5
};
/* EquationStore */
EquationStore();

View File

@@ -180,9 +180,6 @@ void ListController::resolveEquations() {
case EquationStore::Error::TooManyVariables:
app()->displayWarning(I18n::Message::TooManyVariables);
return;
case EquationStore::Error::VariableNameTooLong:
app()->displayWarning(I18n::Message::VariableNameTooLong);
return;
case EquationStore::Error::NonLinearSystem:
app()->displayWarning(I18n::Message::NonLinearSystem);
return;