File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
src/main/java/se/bjurr/violations/comments/bitbucketserver/lib Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ repositories {
6868}
6969
7070dependencies {
71- compile ' se.bjurr.violations:violation-comments-lib:1.24 '
71+ compile ' se.bjurr.violations:violation-comments-lib:1.30 '
7272 compile ' com.jayway.jsonpath:json-path:2.0.0'
7373 compile ' com.google.code.gson:gson:2.8.0'
7474 compile ' com.google.guava:guava:20.0'
Original file line number Diff line number Diff line change 2626import se .bjurr .violations .comments .lib .model .ChangedFile ;
2727import se .bjurr .violations .comments .lib .model .Comment ;
2828import se .bjurr .violations .comments .lib .model .CommentsProvider ;
29+ import se .bjurr .violations .lib .model .Violation ;
30+ import se .bjurr .violations .lib .util .Optional ;
2931
3032public class BitbucketServerCommentsProvider implements CommentsProvider {
3133
@@ -160,4 +162,9 @@ public boolean shouldCreateCommentWithAllSingleFileComments() {
160162 public boolean shouldCreateSingleFileComment () {
161163 return violationCommentsToBitbucketApi .getCreateSingleFileComments ();
162164 }
165+
166+ @ Override
167+ public Optional <String > findCommentFormat (ChangedFile changedFile , Violation violation ) {
168+ return Optional .absent ();
169+ }
163170}
You can’t perform that action at this time.
0 commit comments