Closed artem-zinnatullin closed 9 years ago
Do you mean use final collections with addAll
instead of assignment or something else?
Nope, I mean null
s in Queries and other classes
RawQuery rawQuery = new RawQuery.Builder()
.query("SELECT * FROM tweets")
.build();
rawQuery.args() == null; // -> true
rawQuery.observesTables() == null; //-> true
rawQuery.affectsTables() == null; // -> true
Nulls everywhere in StorIO, that's good for performance, but not safe for users, I think that it's better to lose 1% of performance, but provide safety instead.