Skip to content

Commit 6a433fa

Browse files
dependabot[bot]dvoetpshapiro4broadJose Soto
authored
[PF-2983]: Bump com.diffplug.spotless from 6.25.0 to 7.0.2 (#219)
* [PF-2983]: Bump com.diffplug.spotless from 6.25.0 to 7.0.2 Bumps com.diffplug.spotless from 6.25.0 to 7.0.2. --- updated-dependencies: - dependency-name: com.diffplug.spotless dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update test.yml * Update develop-push.yml * apply spotless lint after updating the spotless bump --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dvoet <dvoet@users.noreply.github.com> Co-authored-by: Phil Shapiro <pshapiro@broadinstitute.org> Co-authored-by: Jose Soto <jsoto@broadinstitute.org>
1 parent 0376494 commit 6a433fa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'java-library'
55
id 'maven-publish'
66

7-
id 'com.diffplug.spotless' version '6.25.0'
7+
id 'com.diffplug.spotless' version '7.0.2'
88
id 'com.github.ben-manes.versions' version '0.51.0'
99
id 'com.jfrog.artifactory' version '5.2.5'
1010
id 'org.sonarqube' version '6.0.1.5171'

src/main/java/bio/terra/common/sam/exception/SamExceptionFactory.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ public static ErrorReportException create(String messagePrefix, ApiException api
6565
return new SamConflictException(message, apiException);
6666
case HttpStatus.SC_INTERNAL_SERVER_ERROR:
6767
return new SamInternalServerErrorException(message, apiException);
68-
// note that SAM does not use a 501 NOT_IMPLEMENTED status code, so that case is skipped
69-
// here
68+
// note that SAM does not use a 501 NOT_IMPLEMENTED status code, so that case is skipped
69+
// here
7070
default:
7171
logger.warn("Got an unexpected response code from Sam: " + apiException);
7272
return new SamInternalServerErrorException(message, apiException);

0 commit comments

Comments
 (0)