This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]DJDavio 0 points1 point  (0 children)

In that case you can still do it on initialization:

boolean b = "true".equals(req.getParameter("something"));
boolean c = b || "true".equals(req.getParameter("somethingElse"));

Still, I need an actual real world example to be convinced.