Skip to content

Commit

Permalink
Remove unnecessary const.
Browse files Browse the repository at this point in the history
  • Loading branch information
isoos committed Nov 12, 2019
1 parent 3f1c98e commit 35c6b85
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/src/constants.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class UTF8ByteConstants {
static const user = const <int>[117, 115, 101, 114, 0];
static const database = const <int>[100, 97, 116, 97, 98, 97, 115, 101, 0];
static const clientEncoding = const <int>[
static const user = <int>[117, 115, 101, 114, 0];
static const database = <int>[100, 97, 116, 97, 98, 97, 115, 101, 0];
static const clientEncoding = <int>[
99,
108,
105,
Expand All @@ -19,6 +19,6 @@ class UTF8ByteConstants {
103,
0
];
static const utf8 = const <int>[85, 84, 70, 56, 0];
static const timeZone = const <int>[84, 105, 109, 101, 90, 111, 110, 101, 0];
static const utf8 = <int>[85, 84, 70, 56, 0];
static const timeZone = <int>[84, 105, 109, 101, 90, 111, 110, 101, 0];
}

0 comments on commit 35c6b85

Please sign in to comment.