Add comment

This commit is contained in:
Ed Minnix
2024-01-04 23:12:02 -05:00
parent 16bb19e176
commit 2eff6b351c

View File

@@ -1,6 +1,7 @@
Map<String, String> env = builder.environment();
String debug = request.getParameter("debug");
// GOOD: Checking the value and not tainting the variable added to the environment
if (debug != null) {
env.put("PYTHONDEBUG", "1");
}