File tree 2 files changed +9
-7
lines changed
powertools-sqs/src/main/java/software/amazon/lambda/powertools/sqs
2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,14 @@ jobs:
24
24
with :
25
25
distribution : ' zulu'
26
26
java-version : 8
27
- - name : Build with Maven for spotbugs check to gather reports
28
- run : mvn -Pbuild-with-spotbugs -B install --file pom.xml -DskipTests -Dmaven.javadoc.skip=true -Dspotbugs.failOnError=false
29
- - uses : jwgmeligmeyling/spotbugs-github-action@master
30
- with :
31
- path : ' **/spotbugsXml.xml'
32
- # Can be simplified post this issue is fixed https://github.com/jwgmeligmeyling/spotbugs-github-action/issues/9
27
+ # https://github.com/jwgmeligmeyling/spotbugs-github-action/issues/6
28
+ # https://github.blog/2020-08-03-github-actions-improvements-for-fork-and-pull-request-workflows/
29
+ # Avoid complexity of git action with publishing report. Just build with spotbugs profile.
30
+ # - name: Build with Maven for spotbugs check to gather reports
31
+ # run: mvn -Pbuild-with-spotbugs -B install --file pom.xml -DskipTests -Dmaven.javadoc.skip=true -Dspotbugs.failOnError=false
32
+ # - uses: jwgmeligmeyling/spotbugs-github-action@master
33
+ # with:
34
+ # path: '**/spotbugsXml.xml'
35
+ # # Can be simplified post this issue is fixed https://github.com/jwgmeligmeyling/spotbugs-github-action/issues/9
33
36
- name : Build with Maven for spotbugs check to mark build as fail if voilations found
34
37
run : mvn -Pbuild-with-spotbugs -B install --file pom.xml -DskipTests -Dmaven.javadoc.skip=true -Dspotbugs.failOnError=true
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ public class SQSBatchProcessingException extends RuntimeException {
33
33
private final List <SQSMessage > failures ;
34
34
private final List <Object > returnValues ;
35
35
36
-
37
36
public <T > SQSBatchProcessingException (final List <Exception > exceptions ,
38
37
final List <SQSMessage > failures ,
39
38
final List <T > successReturns ) {
You can’t perform that action at this time.
0 commit comments