aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHugo Fonseca <hdtfonseca@gmail.com>2015-02-11 17:02:44 +0000
committerHugo Fonseca <hdtfonseca@gmail.com>2015-02-11 17:02:44 +0000
commitafe454d45e1841e14c8242e72cfc680398b3177f (patch)
treed0eadb23e46ce10b939d46cbc4e0c69a9838ad33 /src
parent0fbc5e16cb0642131530fb52ca8098b53bfdcc30 (diff)
downloadbbprb-afe454d45e1841e14c8242e72cfc680398b3177f.tar.gz
fix description link
Diffstat (limited to 'src')
-rw-r--r--src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/BitbucketCause.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/BitbucketCause.java b/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/BitbucketCause.java
index 29ef21f..01e6cd1 100644
--- a/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/BitbucketCause.java
+++ b/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/BitbucketCause.java
@@ -83,9 +83,9 @@ public class BitbucketCause extends Cause {
@Override
public String getShortDescription() {
- String description = '<a href="' + BITBUCKET_URL + this.getDestinationRepositoryOwner() + "/";
+ String description = "<a href=\"" + BITBUCKET_URL + this.getDestinationRepositoryOwner() + "/";
description += this.getDestinationRepositoryName() + "/pull-request/" + this.getPullRequestId();
- description += '">#' + this.getPullRequestId() + " " + this.getPullRequestTitle() + "</a>";
+ description += "\">#" + this.getPullRequestId() + " " + this.getPullRequestTitle() + "</a>";
return description;
}
}