Skip to content

Commit

Permalink
format, changelog, bump
Browse files Browse the repository at this point in the history
  • Loading branch information
anthochamp committed Feb 5, 2024
1 parent 53e7cd2 commit 58e9f5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/ac_inet_connectivity_checker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
// SPDX-License-Identifier: BSD-3-Clause

export 'src/inet_concurrent_connectivity_checker.dart';
export 'src/inet_connectivity_checker_vm.dart' if (dart.library.html) 'src/inet_connectivity_checker_js.dart';
export 'src/inet_connectivity_checker_vm.dart'
if (dart.library.html) 'src/inet_connectivity_checker_js.dart';
export 'src/inet_endpoint.dart';
export 'src/root_name_servers.dart';
3 changes: 2 additions & 1 deletion lib/src/inet_concurrent_connectivity_checker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import 'dart:async';

import 'package:async/async.dart';

import 'inet_connectivity_checker_vm.dart' if (dart.library.html) 'inet_connectivity_checker_js.dart';
import 'inet_connectivity_checker_vm.dart'
if (dart.library.html) 'inet_connectivity_checker_js.dart';
import 'inet_endpoint.dart';

class InetConcurrentConnectivityChecker {
Expand Down

0 comments on commit 58e9f5c

Please sign in to comment.