Skip to content

Commit

Permalink
mnt: convert System.out to out for JSP
Browse files Browse the repository at this point in the history
  • Loading branch information
akrherz committed Nov 20, 2023
1 parent d46c7b1 commit d7e9d2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/web/workgroup-monitors.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
// Save users
if (ModelUtil.hasLength(users)) {
System.out.println(users);
out.println(users);
props.setProperty("monitors", users);
}
else {
Expand Down
2 changes: 1 addition & 1 deletion src/web/workgroup-transcript-config.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
props.deleteProperty(context + ".fromEmail");
props.deleteProperty(context + ".subject");
props.deleteProperty(context + ".message");
System.out.println("DELTED");
out.println("DELTED");
}
else {
from = props.getProperty(context + ".from");
Expand Down

0 comments on commit d7e9d2d

Please sign in to comment.