mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-07-20 21:28:41 -04:00
fix lints
This commit is contained in:
parent
aeaf34e55d
commit
d1559c949d
4 changed files with 6 additions and 6 deletions
|
@ -26,11 +26,11 @@ class AuthorInputSource {
|
|||
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Future<int> getTailPosition() async =>
|
||||
Future<int> getTailPosition() =>
|
||||
_dhtLog.operate((reader) async => reader.length);
|
||||
|
||||
Future<AsyncValue<InputWindow?>> getWindow(
|
||||
int startPosition, int windowLength) async =>
|
||||
int startPosition, int windowLength) =>
|
||||
_dhtLog.operate((reader) async {
|
||||
// Don't allow negative length
|
||||
if (windowLength <= 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue