Author: tim Date: Tue Nov 9 11:34:39 2004 New Revision: 57076 Modified: cocoon/branches/BRANCH_2_1_X/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java Log: Fix typo (is->if).
Modified: cocoon/branches/BRANCH_2_1_X/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java ============================================================================== --- cocoon/branches/BRANCH_2_1_X/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java (original) +++ cocoon/branches/BRANCH_2_1_X/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java Tue Nov 9 11:34:39 2004 @@ -362,7 +362,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());