src/main/java/com/googlesource/gerrit/plugins/gitiles/GitilesWeblinks.java [93:99]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public WebLinkInfo getFileWebLink(String projectName, String revision, String fileName) {
    return new WebLinkInfo(
        name,
        null,
        String.format("%s/%s/+/%s/%s", baseUrl, projectName, revision, fileName),
        target);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/googlesource/gerrit/plugins/gitiles/GitilesWeblinks.java [114:120]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public WebLinkInfo getFileHistoryWebLink(String projectName, String revision, String fileName) {
    return new WebLinkInfo(
        name,
        null,
        String.format("%s/%s/+log/%s/%s", baseUrl, projectName, revision, fileName),
        target);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



