Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Vitus <[email protected]>
  • Loading branch information
mqus and vitusortner authored Mar 15, 2021
1 parent f003ab2 commit 4a71881
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion floor_generator/lib/writer/query_method_writer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class QueryMethodWriter implements Writer {

// generate the variable definitions which will store the sqlite argument
// lists, e.g. '?5,?6,?7,?8'. These have to be generated for each call to
// the querymethod to accommodate for different list sizes. This is
// the query method to accommodate for different list sizes. This is
// necessary to guarantee that each single value is inserted at the right
// place and only via SQLite's escape-mechanism.
// If no [List] parameters are present, Nothing will be written.
Expand Down
2 changes: 1 addition & 1 deletion floor_generator/test/processor/query_processor_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ void main() {
});
}

void testVarFind(
void _testVarFind(
String testName, String query, List<VariableToken> expectedOutput) {
test(testName, () {
expect(
Expand Down

0 comments on commit 4a71881

Please sign in to comment.