Stop importing identifiers we don't use. (#3314)

This commit is contained in:
Ian Hickson 2016-04-13 14:42:07 -07:00
parent 8303cec2fc
commit 571e2e84aa
5 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:ui' show Color, Size, Rect, VoidCallback;
import 'dart:ui' show VoidCallback;
/// The status of an animation
enum AnimationStatus {

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:ui' show Color, Size, Rect, VoidCallback;
import 'dart:ui' show Color, Size, Rect;
import 'animation.dart';
import 'animations.dart';

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:ui' show Color, hashValues, hashList, lerpDouble;
import 'dart:ui' show Color, hashValues;
import 'colors.dart';
import 'icon_theme_data.dart';

View File

@ -3,7 +3,7 @@
// found in the LICENSE file.
import 'dart:async';
import 'dart:ui' as ui show Locale, WindowPadding, window;
import 'dart:ui' as ui show window;
import 'package:flutter/rendering.dart';
import 'package:flutter/services.dart';

View File

@ -3,7 +3,7 @@
// found in the LICENSE file.
import 'dart:async';
import 'dart:ui' as ui show Image, hashValues;
import 'dart:ui' as ui show Image;
import 'package:flutter_test/flutter_test.dart';
import 'package:flutter/rendering.dart';