Skip to content

Commit

Permalink
[INJIWEB-825] : refactor the utilities bean
Browse files Browse the repository at this point in the history
Signed-off-by: Vijay <[email protected]>
  • Loading branch information
vijay151096 committed Sep 18, 2024
1 parent f0d0b2b commit 487c660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/mosip/mimoto/util/Utilities.java
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public void removeCacheData(String requestId) throws IOException {
public String getJson(String configString, String resourcePath) {
String json = configString;
try {
if(!StringUtils.isEmpty(json)){
if(StringUtils.isEmpty(json)){
json = restApiClient.getApi(URI.create(configServerFileStorageURL + resourcePath), String.class);
}
} catch (Exception e) {
Expand Down

0 comments on commit 487c660

Please sign in to comment.