Skip to content

Commit

Permalink
Remove the redundant brackets
Browse files Browse the repository at this point in the history
Signed-off-by: kaido207 <kaido.hiroki@fujitsu.com>
  • Loading branch information
kaido207 committed Feb 20, 2024
1 parent c6ab6fb commit 4aa239c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public static void saveRealm(HandlerContext handlerCtx) {
continue;
}
sb.append(oneProp.get("name")).append("=");
String value = ((String) oneProp.get("value"));
String value = (String) oneProp.get("value");
value = UtilHandlers.escapePropertyValue(value);
sb.append(value).append(":");
}
Expand Down

0 comments on commit 4aa239c

Please sign in to comment.