We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b94578c commit 7079282Copy full SHA for 7079282
dart/lib/src/hub.dart
@@ -602,7 +602,6 @@ class _WeakMap {
602
return;
603
}
604
throwable = exceptionsWrapperUtil.wrapIfUnsupportedType(throwable);
605
- _expando[throwable];
606
try {
607
if (_expando[throwable] == null) {
608
_expando[throwable] = MapEntry(span, transaction);
@@ -631,7 +630,6 @@ class _WeakMap {
631
630
exception: exception,
632
stackTrace: stackTrace,
633
);
634
- print('hahaa');
635
636
return null;
637
dart/test/utils/wrapper_exception_util_test.dart
@@ -71,7 +71,7 @@ void main() {
71
72
final third =
73
exceptionWrapperUtil.wrapIfUnsupportedType(unsupportedThrowable);
74
- expect(fixture.expando[third], 2);
+ expect(fixture.expando[third], 2.0);
75
});
76
77
0 commit comments