From 53daab446c3fdee887789f129d69a890cc7cfb7c Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Thu, 2 Nov 2017 15:34:51 -0700 Subject: [PATCH] Remove library declarations (#208) These don't add any value. --- lib/coverage.dart | 2 -- lib/src/collect.dart | 2 -- lib/src/formatter.dart | 2 -- lib/src/hitmap.dart | 2 -- lib/src/resolver.dart | 2 -- lib/src/run_and_collect.dart | 2 -- lib/src/util.dart | 2 -- test/collect_coverage_api_test.dart | 2 -- test/collect_coverage_test.dart | 2 -- test/lcov_test.dart | 2 -- test/run_and_collect_test.dart | 2 -- test/test_util.dart | 2 -- test/util_test.dart | 2 -- 13 files changed, 26 deletions(-) diff --git a/lib/coverage.dart b/lib/coverage.dart index 7c8bac78..652ed90a 100644 --- a/lib/coverage.dart +++ b/lib/coverage.dart @@ -2,8 +2,6 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -library coverage; - export 'src/collect.dart'; export 'src/formatter.dart'; export 'src/hitmap.dart'; diff --git a/lib/src/collect.dart b/lib/src/collect.dart index 76b867ee..29aa9be9 100644 --- a/lib/src/collect.dart +++ b/lib/src/collect.dart @@ -2,8 +2,6 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -library coverage.collect; - import 'dart:async'; import 'package:vm_service_client/vm_service_client.dart'; diff --git a/lib/src/formatter.dart b/lib/src/formatter.dart index 95380b61..05e1dfdc 100644 --- a/lib/src/formatter.dart +++ b/lib/src/formatter.dart @@ -2,8 +2,6 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -library coverage.formatter; - import 'dart:async'; import 'package:path/path.dart' as p; diff --git a/lib/src/hitmap.dart b/lib/src/hitmap.dart index 878574b3..732d340c 100644 --- a/lib/src/hitmap.dart +++ b/lib/src/hitmap.dart @@ -2,8 +2,6 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -library coverage.hitmap; - import 'dart:async'; import 'dart:convert'; import 'dart:io'; diff --git a/lib/src/resolver.dart b/lib/src/resolver.dart index d76d72ff..e2e6d435 100644 --- a/lib/src/resolver.dart +++ b/lib/src/resolver.dart @@ -2,8 +2,6 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -library coverage.resolver; - import 'dart:async'; import 'dart:io'; diff --git a/lib/src/run_and_collect.dart b/lib/src/run_and_collect.dart index 57b1bd24..13a10a1d 100644 --- a/lib/src/run_and_collect.dart +++ b/lib/src/run_and_collect.dart @@ -2,8 +2,6 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -library coverage.run_and_collect; - import 'dart:async'; import 'dart:convert' show UTF8, LineSplitter; import 'dart:io'; diff --git a/lib/src/util.dart b/lib/src/util.dart index 630705b3..2e859c71 100644 --- a/lib/src/util.dart +++ b/lib/src/util.dart @@ -2,8 +2,6 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -library coverage.src.util; - import 'dart:async'; import 'dart:io'; diff --git a/test/collect_coverage_api_test.dart b/test/collect_coverage_api_test.dart index 490984a7..3c8a5e5d 100644 --- a/test/collect_coverage_api_test.dart +++ b/test/collect_coverage_api_test.dart @@ -2,8 +2,6 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -library coverage.test.collect_coverage_api_test; - import 'dart:async'; import 'dart:convert'; diff --git a/test/collect_coverage_test.dart b/test/collect_coverage_test.dart index 9aa6ae1c..4f48cd1c 100644 --- a/test/collect_coverage_test.dart +++ b/test/collect_coverage_test.dart @@ -2,8 +2,6 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -library coverage.test.collect_coverage_test; - import 'dart:async'; import 'dart:convert'; import 'dart:io'; diff --git a/test/lcov_test.dart b/test/lcov_test.dart index 0d4cea58..051f4c7c 100644 --- a/test/lcov_test.dart +++ b/test/lcov_test.dart @@ -2,8 +2,6 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -library coverage.test.lcov_test; - import 'dart:async'; import 'dart:convert'; import 'dart:io'; diff --git a/test/run_and_collect_test.dart b/test/run_and_collect_test.dart index e8e0fe4e..f767ec3d 100644 --- a/test/run_and_collect_test.dart +++ b/test/run_and_collect_test.dart @@ -2,8 +2,6 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -library coverage.test.run_and_collect_test; - import 'dart:io'; import 'package:coverage/coverage.dart'; diff --git a/test/test_util.dart b/test/test_util.dart index ce539a8d..3b44b967 100644 --- a/test/test_util.dart +++ b/test/test_util.dart @@ -2,8 +2,6 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -library coverage.test.util; - import 'dart:async'; import 'dart:io'; diff --git a/test/util_test.dart b/test/util_test.dart index 6f31e44d..833f9322 100644 --- a/test/util_test.dart +++ b/test/util_test.dart @@ -2,8 +2,6 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -library coverage.test.util_test; - import 'dart:async'; import 'package:coverage/src/util.dart';