Skip to content

Commit af99cbd

Browse files
authored
ci: fix analyze issues (#1908)
* Fix analyze issues
1 parent 3d822bf commit af99cbd

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

dart/lib/src/client_reports/client_report_recorder.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ class _QuantityKey {
4646
int get hashCode => Object.hash(reason.hashCode, category.hashCode);
4747

4848
@override
49+
// ignore: non_nullable_equals_parameter
4950
bool operator ==(dynamic other) {
5051
return other is _QuantityKey &&
5152
other.reason == reason &&

dart/test/sentry_test.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ void main() {
2121
final options = SentryOptions(dsn: fakeDsn)..automatedTestMode = true;
2222
await Sentry.init(
2323
options: options,
24-
(options) => {
25-
options.dsn = fakeDsn,
26-
options.tracesSampleRate = 1.0,
24+
(options) {
25+
options.dsn = fakeDsn;
26+
options.tracesSampleRate = 1.0;
2727
},
2828
);
2929
anException = Exception('anException');

sqflite/lib/src/sentry_sqflite_transaction.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ class SentrySqfliteTransaction extends Transaction implements DatabaseExecutor {
2323
final Hub _hub;
2424
final String? _dbName;
2525

26-
// ignore: public_member_api_docs
2726
@internal
27+
// ignore: public_member_api_docs
2828
SentrySqfliteTransaction(
2929
this._executor, {
3030
@internal Hub? hub,

0 commit comments

Comments
 (0)