Skip to content

Commit b2b9a9e

Browse files
committed
style: remove redundant imports
1 parent cd70bc7 commit b2b9a9e

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Dart Package Versioning](https://dart.dev/tools/pub
99

1010
### Fixed
1111

12+
- remove redundant imports.
1213
- running demo app on Android — [146](https://github.com/dartoos-dev/formdator/issues/146).
1314

1415
## [0.12.1] - 2021-09-07

lib/src/brazil/req_cnpj.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import 'package:formdator/formdator.dart';
1+
import '../core/pair.dart';
2+
import '../core/req.dart';
23
import 'cnpj.dart';
34

45
/// Required CNPJ - Cadastro Nacional de Pessoa Jurídica.

lib/src/net/req_email.dart

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
import 'package:formdator/formdator.dart';
1+
import '../core/pair.dart';
2+
import '../core/req.dart';
3+
import '../type.dart';
4+
25
import 'email.dart';
36

4-
/// Convenient validator for required email fields.
7+
/// Convenience validator for required email fields.
58
///
6-
/// It is the composite of [Req] and [Email] validators.
9+
/// It is the composition between validators [Req] and [Email].
710
class ReqEmail {
811
/// Non-blank and well-formed email values.
912
///

0 commit comments

Comments
 (0)