Skip to content

Commit b10696f

Browse files
committed
Formatting after merge #5
1 parent 7fe690a commit b10696f

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ Changelog of Violation comments to bitbucket server lib.
66
## Unreleased
77
### No issue
88

9+
**Add optional creation of Bitbucket tasks for violation comments.**
10+
11+
12+
[a0c2b0f1d922fbb](https://github.com/tomasbjerre/violation-comments-to-bitbucket-server-lib/commit/a0c2b0f1d922fbb) Frederik Boster *2018-07-06 12:41:19*
13+
14+
15+
## 1.51
16+
### No issue
17+
918
**Commit corrections by build process**
1019

1120

src/main/java/se/bjurr/violations/comments/bitbucketserver/lib/client/BitbucketServerClient.java

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -111,16 +111,12 @@ private String doInvokeUrl(final String url, final Method method, final String p
111111
url, method, postContent, bitbucketPersonalAccessToken, proxyInformation);
112112
} else {
113113
return bitbucketServerInvoker.invokeUrl(
114-
url,
115-
method,
116-
postContent,
117-
bitbucketServerUser,
118-
bitbucketServerPassword,
119-
proxyInformation);
114+
url, method, postContent, bitbucketServerUser, bitbucketServerPassword, proxyInformation);
120115
}
121116
}
122117

123-
public BitbucketServerComment pullRequestComment(final String changedFile, int line, final String message) {
118+
public BitbucketServerComment pullRequestComment(
119+
final String changedFile, int line, final String message) {
124120
if (line == 0) {
125121
line = 1;
126122
}

0 commit comments

Comments
 (0)