> I didn�t mean inherited in the sense of the Java Language.
Ok, I understand now.
At the same time, please take the time to look at this code:
boolean addIt = false;
while (true) {
if (message != null) {
if (addIt)
messages.put(originalKey, message);
return (message);
}
addIt = true; <-------------Set to true.
if (underscore < 0)
break;
}
If a break happens, addIt has already been set to true,
and is not needed.
-Rob
--
To unsubscribe, e-mail: <mailto:struts-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-dev-help@;jakarta.apache.org>