Skip to content

Commit f17eb6d

Browse files
committed
lint: fix pub.dev lint_core warnings
1 parent 0829a06 commit f17eb6d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/src/core/enums/call_event_type.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ enum CallEventType {
1111
return '~';
1212
case CallEventType.remove:
1313
return '-';
14-
default:
15-
return '?';
14+
// default:
15+
// return '?';
1616
}
1717
}
1818
}

lib/src/method_channel/web_callkit_method_channel.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -612,9 +612,9 @@ class MethodChannelWebCallkit extends WebCallkitPlatform {
612612
_dismissNotification(result.uuid);
613613
break;
614614

615-
default:
616-
printDebug("Unknown action: ${result.action}", tag: tag);
617-
break;
615+
// default:
616+
// printDebug("Unknown action: ${result.action}", tag: tag);
617+
// break;
618618
}
619619
}
620620

0 commit comments

Comments
 (0)