SQLiteBuilder
SQLiteBuilder copied to clipboard
What is the idea behind DOUBLE_SPACE.matcher
Hi,
i have a short question:
In StatementConverterImpl.java line 64 it says: return DOUBLE_SPACE.matcher(rawSqlBuilder.toString()).replaceAll(" ");
This was causing trouble for us since it also modifies values that are saved into the database. For Example "a b" becomes "a b".
What was the idea behind this line? It looks like we can just remove it and everything still works as expected.
Thanks for your feedback!