SQLiteBuilder icon indicating copy to clipboard operation
SQLiteBuilder copied to clipboard

What is the idea behind DOUBLE_SPACE.matcher

Open tkohub opened this issue 8 years ago • 0 comments

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!

tkohub avatar Apr 11 '17 10:04 tkohub