From 76c94f51ca0240578e1bb8349636454ab456279d Mon Sep 17 00:00:00 2001 From: "Sergey G. Grekhov" Date: Fri, 9 Feb 2024 12:40:17 +0200 Subject: [PATCH] #2119. Remove unused code, add issues numbers (#2534) --- LibTest/convert/ChunkedConversionSink/close_A01_t01.test.dart | 1 - LibTest/typed_data/Float32List/setRange_A06_t01.dart | 1 + LibTest/typed_data/Float64List/setRange_A06_t01.dart | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) diff --git a/LibTest/convert/ChunkedConversionSink/close_A01_t01.test.dart b/LibTest/convert/ChunkedConversionSink/close_A01_t01.test.dart index 1a29c12339..fe6f1a91bf 100644 --- a/LibTest/convert/ChunkedConversionSink/close_A01_t01.test.dart +++ b/LibTest/convert/ChunkedConversionSink/close_A01_t01.test.dart @@ -20,7 +20,6 @@ test(ChunkedConversionSink create(ChunkedConversionSink> outSink)) { bool called = false; Utf8Codec codec = new Utf8Codec(); var encoded = codec.encode("Кириллица"); - Utf8Decoder decoder = new Utf8Decoder(); var outSink = new ChunkedConversionSink>.withCallback((accumulated) { called = true; diff --git a/LibTest/typed_data/Float32List/setRange_A06_t01.dart b/LibTest/typed_data/Float32List/setRange_A06_t01.dart index 0b15abed93..b51ee8f9c9 100644 --- a/LibTest/typed_data/Float32List/setRange_A06_t01.dart +++ b/LibTest/typed_data/Float32List/setRange_A06_t01.dart @@ -13,6 +13,7 @@ /// @description Checks that it is a run time error if run-time type of the /// `iterable` is not subtype of this list. Test data of the same size /// @author sgrekhov22@gmail.com +/// @issue 53945 import "dart:typed_data"; import "../../../Utils/expect.dart"; diff --git a/LibTest/typed_data/Float64List/setRange_A06_t01.dart b/LibTest/typed_data/Float64List/setRange_A06_t01.dart index 4c5c715258..d95165d421 100644 --- a/LibTest/typed_data/Float64List/setRange_A06_t01.dart +++ b/LibTest/typed_data/Float64List/setRange_A06_t01.dart @@ -13,6 +13,7 @@ /// @description Checks that it is a run time error if run-time type of the /// `iterable` is not subtype of this list. Test list elements of the same size /// @author sgrekhov22@gmail.com +/// @issue 53945 import "dart:typed_data"; import "../../../Utils/expect.dart";