Skip to content

Commit

Permalink
adds comments
Browse files Browse the repository at this point in the history
Signed-off-by: Max Thonagel <[email protected]>
  • Loading branch information
thoniTUB committed Feb 20, 2024
1 parent 70ea69a commit 47e1ae5
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,11 @@ public void execute(Map<String, List<String>> parameters, PrintWriter output) th
FRONTEND_FORM_CONFIGS = generateFEFormConfigMap();

if (output == null) {
// Not called from a request
return;
}

// If called from a request, respond with findings
output.write("Registered forms:\n");
for (String formId : FRONTEND_FORM_CONFIGS.keySet()) {
output.write(String.format("\t%s\n", formId));
Expand Down

0 comments on commit 47e1ae5

Please sign in to comment.