Skip to content
Snippets Groups Projects
Commit 46967af9 authored by rnystrom@google.com's avatar rnystrom@google.com Committed by Natalie Weizenbaum
Browse files

Remove unused parameter.

This also fixes an analyzer warning since the param had the wrong type.

R=nweiz@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@40653 260f80e4-7a28-3924-810f-c04153c831b5
parent 70ef0265
No related branches found
No related tags found
No related merge requests found
......@@ -412,11 +412,11 @@ void scheduleSymlink(String target, String symlink) {
/// matching that object, which can be a literal JSON object or any other
/// [Matcher].
void schedulePub({List args, output, error, outputJson,
Future<Uri> tokenEndpoint, int exitCode: exit_codes.SUCCESS}) {
int exitCode: exit_codes.SUCCESS}) {
// Cannot pass both output and outputJson.
assert(output == null || outputJson == null);
var pub = startPub(args: args, tokenEndpoint: tokenEndpoint);
var pub = startPub(args: args);
pub.shouldExit(exitCode);
var failures = [];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment