diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/BitbucketCause.java | 4 |
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 4745f15..29ef21f 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; } } |