1
0
mirror of https://github.com/dart-lang/sdk synced 2024-07-08 20:16:39 +00:00

Clean up a few static warnings.

Review URL: https://codereview.chromium.org//11867029

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@17331 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
rnystrom@google.com 2013-01-18 23:54:38 +00:00
parent 0bf36986ec
commit d160b37a92
5 changed files with 3 additions and 5 deletions

3
.gitignore vendored
View File

@ -45,8 +45,9 @@ third_party/gsutil/*/gsutilc
# From the Mac OS X Finder
.DS_Store
# Pub generated "packages" directories
# Pub generated "packages" directories and files
packages
pubspec.lock
# Vim temporary swap files.
*.swp

View File

@ -8,7 +8,6 @@ import 'dart:io';
import 'dart:json' as json;
import 'dart:uri';
import 'test_pub.dart';
import 'test_pub.dart';
import '../../../pkg/http/lib/http.dart' as http;
import '../../../pkg/unittest/lib/unittest.dart';

View File

@ -7,7 +7,6 @@ library pub_lish_test;
import 'dart:io';
import 'dart:json' as json;
import 'test_pub.dart';
import 'test_pub.dart';
import '../../../pkg/unittest/lib/unittest.dart';
import '../../pub/io.dart';

View File

@ -7,7 +7,6 @@ library pub_uploader_test;
import 'dart:io';
import 'dart:json' as json;
import 'test_pub.dart';
import 'test_pub.dart';
import '../../../pkg/unittest/lib/unittest.dart';
import '../../pub/utils.dart';

View File

@ -455,7 +455,7 @@ final _TIMEOUT = 30000;
/// Defines an integration test. The [body] should schedule a series of
/// operations which will be run asynchronously.
integration(String description, body()) {
void integration(String description, void body()) {
test(description, () {
body();
_run();