Skip to content

Commit

Permalink
Update ScipResponse.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ghareeb-falazi committed Sep 30, 2024
1 parent bec4275 commit 78f26e8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ public class ScipResponse extends CallbackMessage {
public String toString() {
return "ScipResponseMessage{" +
"correlationIdentifier='" + correlationIdentifier + '\'' +
", parameters=[" + parameters.stream().map(p-> "{ name: " + p.getName() + ", value: " + p.getValue() + ", type: " + p.getType() + " }").collect(Collectors.joining(",")) + "]" +
", parameters=[" + (parameters == null? "]":
parameters.stream().map(p-> "{ name: " + p.getName() + ", value: " + p.getValue() + ", type: " + p.getType() + " }").collect(Collectors.joining(",")) + "]") +
", isoTimestamp='" + isoTimestamp + '\'' +
", occurrences=" + occurrences +
", exception=" + exception +
Expand Down

0 comments on commit 78f26e8

Please sign in to comment.