Skip to content

Commit

Permalink
#131 - Fix formatting of message
Browse files Browse the repository at this point in the history
  • Loading branch information
dstenger committed Oct 21, 2024
1 parent 9a625c0 commit a4cd658
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public String validatePositionQueryUsingParameters(Set<String> collectionIds, St
String supportedFormat = null;

if(variables==null) { //Avoids Nullpointer Exception
sb.append(" The variables element is missing from the collection "+collectionId+" .");
sb.append(" The variables element is missing from the collection " + collectionId + ". ");
} else {
ArrayList<String> outputFormatList = (ArrayList<String>) variables.get("output_formats");
supportedFormat = getSupportedFormat(outputFormatList);
Expand Down

0 comments on commit a4cd658

Please sign in to comment.