Skip to content

Commit

Permalink
Remove unused shown names, and unused imports (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
srawlins authored and skybrian committed Apr 21, 2016
1 parent 17859c7 commit 47e4662
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions lib/protobuf.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@
library protobuf;

import 'dart:async' show Future;
import 'dart:collection' show HashMap, ListMixin;
import 'dart:collection' show ListMixin;
import 'dart:convert' show BASE64, JSON, Utf8Codec;
import 'dart:math' as math;
import 'dart:typed_data' show TypedData, Uint8List, ByteData, Endianness;

import 'package:crypto/crypto.dart' show CryptoUtils;
import 'package:fixnum/fixnum.dart' show Int64;

part 'src/protobuf/coded_buffer.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/protobuf/mixins/event_mixin.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import "dart:async" show Stream, StreamController, scheduleMicrotask;
import "dart:collection" show UnmodifiableListView;

import "package:protobuf/protobuf.dart"
show GeneratedMessage, FieldInfo, EventPlugin, ListEventPlugin;
show GeneratedMessage, FieldInfo, EventPlugin;

/// Provides a stream of changes to fields in a GeneratedMessage.
/// (Experimental.)
Expand Down
2 changes: 1 addition & 1 deletion test/event_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import 'package:protobuf/protobuf.dart'
show GeneratedMessage, Extension, ExtensionRegistry, PbFieldType;
import 'package:protobuf/src/protobuf/mixins/event_mixin.dart'
show PbEventMixin, PbFieldChange;
import 'package:test/test.dart' show test, expect, predicate, same;
import 'package:test/test.dart' show test, expect;

import 'mock_util.dart' show MockMessage, mockInfo;

Expand Down
2 changes: 1 addition & 1 deletion test/map_mixin_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ library map_mixin_test;
import 'dart:collection' show MapMixin;

import 'package:protobuf/src/protobuf/mixins/map_mixin.dart';
import 'package:test/test.dart' show test, expect, predicate, same, throws;
import 'package:test/test.dart' show test, expect, same, throws;

import 'mock_util.dart' show MockMessage, mockInfo;

Expand Down

0 comments on commit 47e4662

Please sign in to comment.