File tree 4 files changed +5
-5
lines changed
src/main/java/io/qameta/allure/jira/retrofit
gradle/quality-configs/spotbugs
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ dependencies {
8
8
annotationProcessor(" org.projectlombok:lombok" )
9
9
api(" com.squareup.retrofit2:converter-jackson" )
10
10
api(" com.squareup.retrofit2:retrofit" )
11
- compileOnly(" com.github.spotbugs:spotbugs-annotations" )
12
11
compileOnly(" org.projectlombok:lombok" )
13
12
compileOnly(project(" :allure-plugin-api" ))
14
13
}
Original file line number Diff line number Diff line change 15
15
*/
16
16
package io .qameta .allure .jira .retrofit ;
17
17
18
- import edu .umd .cs .findbugs .annotations .SuppressFBWarnings ;
19
18
import okhttp3 .ResponseBody ;
20
19
import retrofit2 .Call ;
21
20
import retrofit2 .CallAdapter ;
@@ -88,7 +87,6 @@ public retrofit2.Response<T> adapt(final Call<T> call) {
88
87
/**
89
88
* Call adapter factory for instances.
90
89
*/
91
- @ SuppressFBWarnings ("NP_NONNULL_RETURN_VIOLATION" )
92
90
private class InstanceCallAdapter implements CallAdapter <T , Object > {
93
91
94
92
private static final int NOT_FOUND = 404 ;
Original file line number Diff line number Diff line change @@ -86,8 +86,7 @@ subprojects {
86
86
dependencies {
87
87
dependency(" ch.qos.logback:logback-classic:1.3.15" )
88
88
dependency(" com.beust:jcommander:1.82" )
89
- dependency(" com.github.spotbugs:spotbugs-annotations:4.8.6" )
90
- dependency(" com.github.spotbugs:spotbugs:4.8.6" )
89
+ dependency(" com.github.spotbugs:spotbugs:4.9.2" )
91
90
dependency(" com.opencsv:opencsv:5.9" )
92
91
dependency(" com.puppycrawl.tools:checkstyle:10.21.4" )
93
92
dependency(" com.squareup.retrofit2:converter-jackson:${comSquareupRetrofit2Version} " )
Original file line number Diff line number Diff line change 46
46
<!-- finalizer methods are pretty much a dead pattern in Java -->
47
47
<Bug pattern =" CT_CONSTRUCTOR_THROW" />
48
48
</Match >
49
+
50
+ <Match class =" io.qameta.allure.jira.retrofit.DefaultCallAdapterFactory$InstanceCallAdapter" >
51
+ <Bug pattern =" NP_NONNULL_RETURN_VIOLATION" />
52
+ </Match >
49
53
</FindBugsFilter >
You can’t perform that action at this time.
0 commit comments