Author: tim Date: Fri Nov 5 12:54:06 2004 New Revision: 56697 Modified: cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java Log: typo in comment
Modified: cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java ============================================================================== --- cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java (original) +++ cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java Fri Nov 5 12:54:06 2004 @@ -413,7 +413,7 @@ attrs.addCDATAAttribute("id", getRequestParameterName()); } - // Add the "state" attribute is different from active (the default state) + // Add the "state" attribute if different from active (the default state) WidgetState state = getCombinedState(); if (state != WidgetState.ACTIVE) { attrs.addCDATAAttribute("state", getCombinedState().getName());