Remove comment

This commit is contained in:
poka 2021-01-30 16:39:20 +01:00
parent 82a17df414
commit 4aecbd23be
1 changed files with 1 additions and 4 deletions

View File

@ -8,14 +8,13 @@ import 'dart:math';
import 'package:intl/intl.dart'; import 'package:intl/intl.dart';
class HistoryProvider with ChangeNotifier { class HistoryProvider with ChangeNotifier {
// String pubkey = 'D2meevcAHFTS2gQMvmRW5Hzi25jDdikk4nC4u1FkwRaU'; // For debug
String pubkey = ''; String pubkey = '';
HistoryProvider(this.pubkey); HistoryProvider(this.pubkey);
final TextEditingController _outputPubkey = new TextEditingController(); final TextEditingController _outputPubkey = new TextEditingController();
bool isTheEnd = false; bool isTheEnd = false;
List transBC; List transBC;
// String pubkey = 'D2meevcAHFTS2gQMvmRW5Hzi25jDdikk4nC4u1FkwRaU'; // For debug
Future scan() async { Future scan() async {
await Permission.camera.request(); await Permission.camera.request();
String barcode; String barcode;
@ -104,8 +103,6 @@ class HistoryProvider with ChangeNotifier {
i++; i++;
} }
// transBC.sort((b, a) => Comparable.compare(a[0], b[0]));
return transBC; return transBC;
} }