Skip to content

Commit b1912b2

Browse files
committed
fix: spotless fmt
1 parent acff828 commit b1912b2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/dev/openfga/sdk/errors/FgaError.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ private static String extractErrorCode(String responseBody) {
7676

7777
try {
7878
JsonNode jsonNode = ERROR_MAPPER.readTree(responseBody);
79-
79+
8080
JsonNode codeNode = jsonNode.get("code");
8181
if (codeNode != null && !codeNode.isNull()) {
8282
return codeNode.asText();
@@ -257,4 +257,4 @@ public void setOperationName(String operationName) {
257257
public String getOperationName() {
258258
return operationName;
259259
}
260-
}
260+
}

src/test/java/dev/openfga/sdk/errors/FgaErrorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,4 +474,4 @@ public HttpClient.Version version() {
474474
}
475475
};
476476
}
477-
}
477+
}

0 commit comments

Comments
 (0)