Skip to content

Commit 1408647

Browse files
committed
Code reformatting
1 parent 66dcb98 commit 1408647

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

app/src/main/java/io/apicurio/registry/storage/impl/sql/AbstractSqlRegistryStorage.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1896,8 +1896,7 @@ public void updateArtifactVersionMetaData(String groupId, String artifactId, Str
18961896

18971897
int rowCount = handle.createUpdate(sqlStatements.updateArtifactVersionLabelsByGAV())
18981898
.bind(0, RegistryContentUtils.serializeLabels(editableMetadata.getLabels()))
1899-
.bind(1, normalizeGroupId(groupId))
1900-
.bind(2, artifactId).bind(3, version).execute();
1899+
.bind(1, normalizeGroupId(groupId)).bind(2, artifactId).bind(3, version).execute();
19011900
if (rowCount == 0) {
19021901
throw new VersionNotFoundException(groupId, artifactId, version);
19031902
}

0 commit comments

Comments
 (0)