Skip to content

Commit 0e85e81

Browse files
committed
spotless fix
1 parent 6587dd5 commit 0e85e81

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

sdm/src/main/java/com/sap/cds/sdm/service/SDMService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ public JSONObject editLink(
7676
throws IOException;
7777

7878
public JSONObject getChangeLog(
79-
String objectId, SDMCredentials sdmCredentials, boolean isSystemUser);
80-
79+
String objectId, SDMCredentials sdmCredentials, boolean isSystemUser) throws IOException;
80+
8181
public String getLinkUrl(String objectId, SDMCredentials sdmCredentials, boolean isSystemUser)
8282
throws IOException;
8383
}

sdm/src/main/java/com/sap/cds/sdm/service/SDMServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ private String getRepositoryId(String jsonString) {
791791

792792
@Override
793793
public JSONObject getChangeLog(
794-
String objectId, SDMCredentials sdmCredentials, boolean isSystemUser) {
794+
String objectId, SDMCredentials sdmCredentials, boolean isSystemUser) throws IOException {
795795
String grantType = isSystemUser ? TECHNICAL_USER_FLOW : NAMED_USER_FLOW;
796796
logger.info("This is a :" + grantType + " flow");
797797
var httpClient = tokenHandler.getHttpClient(binding, connectionPool, null, grantType);

0 commit comments

Comments
 (0)