fix the parsing error in the Android app

This commit is contained in:
kr.angelov
2013-10-31 13:22:53 +00:00
parent 20d465ca8c
commit 3e556355b0

View File

@@ -94,7 +94,7 @@ public class Translator {
return output;
} catch (ParseError e) {
Log.e(TAG, "Parse error: " + e);
return "parse error: " + input + " " + e.getMessage(); // TODO: no no no
return "parse error: " + e.getMessage(); // TODO: no no no
}
}