Skip to content

Commit

Permalink
Remove library declarations (#208)
Browse files Browse the repository at this point in the history
These don't add any value.
  • Loading branch information
cbracken committed Nov 2, 2017
1 parent 6b8796d commit 53daab4
Show file tree
Hide file tree
Showing 13 changed files with 0 additions and 26 deletions.
2 changes: 0 additions & 2 deletions lib/coverage.dart
Expand Up @@ -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';
Expand Down
2 changes: 0 additions & 2 deletions lib/src/collect.dart
Expand Up @@ -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';
Expand Down
2 changes: 0 additions & 2 deletions lib/src/formatter.dart
Expand Up @@ -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;
Expand Down
2 changes: 0 additions & 2 deletions lib/src/hitmap.dart
Expand Up @@ -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';
Expand Down
2 changes: 0 additions & 2 deletions lib/src/resolver.dart
Expand Up @@ -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';

Expand Down
2 changes: 0 additions & 2 deletions lib/src/run_and_collect.dart
Expand Up @@ -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';
Expand Down
2 changes: 0 additions & 2 deletions lib/src/util.dart
Expand Up @@ -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';

Expand Down
2 changes: 0 additions & 2 deletions test/collect_coverage_api_test.dart
Expand Up @@ -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';

Expand Down
2 changes: 0 additions & 2 deletions test/collect_coverage_test.dart
Expand Up @@ -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';
Expand Down
2 changes: 0 additions & 2 deletions test/lcov_test.dart
Expand Up @@ -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';
Expand Down
2 changes: 0 additions & 2 deletions test/run_and_collect_test.dart
Expand Up @@ -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';
Expand Down
2 changes: 0 additions & 2 deletions test/test_util.dart
Expand Up @@ -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';

Expand Down
2 changes: 0 additions & 2 deletions test/util_test.dart
Expand Up @@ -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';
Expand Down

0 comments on commit 53daab4

Please sign in to comment.