fix for i

This commit is contained in:
serso 2011-10-06 23:33:30 +04:00
parent 53e8a53b09
commit 1bb0d585f4

View File

@ -20,11 +20,9 @@ class FromJsclTextProcessor implements TextProcessor {
@NotNull @NotNull
@Override @Override
public String process(@NotNull String s) throws ParseException { public String process(@NotNull String result) throws ParseException {
String result = null;
try { try {
result = String.valueOf(round(s)); result = String.valueOf(round(result));
} catch (NumberFormatException e) { } catch (NumberFormatException e) {
if (result.contains(MathType.IMAGINARY_NUMBER_DEF)) { if (result.contains(MathType.IMAGINARY_NUMBER_DEF)) {
try { try {