Author: julien(a)jboss.com
Date: 2007-01-18 08:05:47 -0500 (Thu, 18 Jan 2007)
New Revision: 6030
Modified:
trunk/core/src/main/org/jboss/portal/core/impl/model/portal/PortalObjectImpl.java
Log:
implement toArray in the Collection returned by PortalObjectImpl getChildren()
Modified:
trunk/core/src/main/org/jboss/portal/core/impl/model/portal/PortalObjectImpl.java
===================================================================
---
trunk/core/src/main/org/jboss/portal/core/impl/model/portal/PortalObjectImpl.java 2007-01-18
10:47:32 UTC (rev 6029)
+++
trunk/core/src/main/org/jboss/portal/core/impl/model/portal/PortalObjectImpl.java 2007-01-18
13:05:47 UTC (rev 6030)
@@ -186,7 +186,7 @@
public Object[] toArray()
{
- throw new UnsupportedOperationException();
+ return toArray(new Object[0]);
}
public boolean add(Object o)