return evaluateNameFormula(nameRecord.getNameDefinition(), ec);
}
- throw new RuntimeException("Don't now how to evaluate name '" + nameRecord.getNameText() + "'");
+ throw new RuntimeException("Don't know how to evaluate name '" + nameRecord.getNameText() + "'");
}
/**
} catch (EvaluationException e) {
vA = e.getErrorEval();
} catch (RuntimeException e) {
- if(e.getMessage().startsWith("Don't now how to evaluate name")){
+ if(e.getMessage().startsWith("Don't know how to evaluate name")){
vA = ErrorEval.NAME_INVALID;
} else {
throw e;
} catch (EvaluationException e) {
vB = e.getErrorEval();
} catch (RuntimeException e) {
- if(e.getMessage().startsWith("Don't now how to evaluate name")){
+ if(e.getMessage().startsWith("Don't know how to evaluate name")){
vB = ErrorEval.NAME_INVALID;
} else {
throw e;
} catch (EvaluationException e) {
vA = e.getErrorEval();
} catch (RuntimeException e) {
- if(e.getMessage().startsWith("Don't now how to evaluate name")){
+ if(e.getMessage().startsWith("Don't know how to evaluate name")){
vA = ErrorEval.NAME_INVALID;
} else {
throw e;
assertEquals(5.33, value.getNumberValue(), 0.0);
} catch (RuntimeException e) {
- if (e.getMessage().equals("Don't now how to evalate name 'Is_Multicar_Vehicle'")) {
+ if (e.getMessage().equals("Don't know how to evaluate name 'Is_Multicar_Vehicle'")) {
fail("Identified bug 47048a");
}
throw e;