Author Login
Post Reply
jhm@(protected):
> + /**
> + * Asserts that a condition is true.
> + * @param condition which condition to check
> + * @param errormessage errormessage to throw if a condition failed
> + */
> + public void assertConfig(boolean condition, String errormessage) {
> + if (condition) {
> + errors.add(errormessage);
> + }
> + }
You mean if (!condition), don't you?
Stefan
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@(protected)
For additional commands, e-mail: dev-help@(protected)