Formatting

This commit is contained in:
Simon Binder 2020-05-16 19:42:33 +02:00
parent 888e131d50
commit a1304c537f
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 1 additions and 1 deletions

View File

@ -32,6 +32,6 @@ class CreateViewStatement extends Statement implements CreatingStatement {
bool contentEquals(CreateViewStatement other) {
return other.ifNotExists == ifNotExists &&
other.viewName == viewName &&
const ListEquality().equals(other.columns,columns);
const ListEquality().equals(other.columns, columns);
}
}