We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d764cea commit 850e59fCopy full SHA for 850e59f
lib/model/typing_status.dart
@@ -3,7 +3,6 @@ import 'dart:async';
3
import 'package:flutter/foundation.dart';
4
5
import '../api/model/events.dart';
6
-import '../log.dart';
7
import 'narrow.dart';
8
9
/// The model for tracking the typing status organized by narrows.
@@ -40,7 +39,6 @@ class TypingStatus extends ChangeNotifier {
40
39
41
bool _addTypist(SendableNarrow narrow, int typistUserId) {
42
if (typistUserId == selfUserId) {
43
- assert(debugLog('typing status: adding self as typist'));
44
return false;
45
}
46
final narrowTimerMap = _timerMapsByNarrow[narrow] ??= {};
0 commit comments