From: <mb...@re...> - 2005-02-21 16:33:10
|
Author: mbooth Date: 2005-02-21 17:31:49 +0100 (Mon, 21 Feb 2005) New Revision: 277 Modified: ccm-core/trunk/src/com/arsdigita/formbuilder/ui/NewAction.java Log: Remove unused code Modified: ccm-core/trunk/src/com/arsdigita/formbuilder/ui/NewAction.java =================================================================== --- ccm-core/trunk/src/com/arsdigita/formbuilder/ui/NewAction.java 2005-02-21 16:31:22 UTC (rev 276) +++ ccm-core/trunk/src/com/arsdigita/formbuilder/ui/NewAction.java 2005-02-21 16:31:49 UTC (rev 277) @@ -62,8 +62,6 @@ fs.add(new Label(GlobalizationUtil.globalize("formbuilder.ui.action"))); fs.add(new Submit("Add")); - addInitListener(new NewActionInitListener()); - add(fs); } @@ -93,15 +91,4 @@ public SingleSelectionModel getSelection() { return m_selection; } - - private class NewActionInitListener implements FormInitListener { - public void init(FormSectionEvent e) - throws FormProcessException { - - // FIXME: what this the point of this method? -- 2002-11-26 - // BigDecimal type = (BigDecimal)m_selection.getSelectedKey(e.getPageState()); - - //m_type.setOptionSelected(type.toString()); - } - } } |