Fix: RepoCommandLink's text is wrong

The title of the "repo download" link was mistakenly set to "checkout"
during refactoring in commit cbc629f4f4.

Change it to the correct "repo download" title.

Bug: Issue 2093
Change-Id: I4c30d0fedf56942f741edbbfaa7505052e5e370c
This commit is contained in:
Bruce Zu
2013-08-29 15:17:08 +08:00
committed by David Pursehouse
parent 0fe5ccc88d
commit 4cc99757c0

View File

@@ -86,7 +86,7 @@ public abstract class DownloadCommandLink extends Anchor implements ClickHandler
String projectName;
String ref;
public RepoCommandLink(String project, String ref) {
super(DownloadCommand.REPO_DOWNLOAD, "checkout");
super(DownloadCommand.REPO_DOWNLOAD, "repo download");
this.projectName = project;
this.ref = ref;
}