org/apache/wicket/extensions/markup/html/repeater/data/table/DataTable onDetach 
columns never null
--------------------------------------------------------------------------------------------------

                 Key: WICKET-3476
                 URL: https://issues.apache.org/jira/browse/WICKET-3476
             Project: Wicket
          Issue Type: Improvement
          Components: wicket, wicket-extensions
    Affects Versions: 1.5-RC1
         Environment: all
            Reporter: Richard Emberson
            Priority: Trivial


In org/apache/wicket/extensions/markup/html/repeater/data/table/DataTable  
method onDetach:

  protected void onDetach()
  {
    super.onDetach();
    if (columns != null)
    {
      for (IColumn<?> column : columns)
      {
        column.detach();
      }
    }
  }

I don' t think that columns can ever be null.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to