aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}
}