mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-09 18:56:02 +02:00
[187953] empty array should be returned if no persistable children, not null.
This commit is contained in:
parent
be30431339
commit
c59ed02f11
3 changed files with 3 additions and 3 deletions
|
@ -779,7 +779,7 @@ public abstract class AbstractDelegatingConnectorService implements IDelegatingC
|
|||
{
|
||||
return conServ.getPersistableChildren();
|
||||
}
|
||||
return null;
|
||||
return new IRSEPersistableContainer[0];
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -160,7 +160,7 @@ public class UserActionContext extends RSEModelObject implements IUserActionCont
|
|||
* @see org.eclipse.rse.core.model.IRSEPersistableContainer#getPersistableChildren()
|
||||
*/
|
||||
public IRSEPersistableContainer[] getPersistableChildren() {
|
||||
return null;
|
||||
return new IRSEPersistableContainer[0];
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
|
|
|
@ -219,7 +219,7 @@ public class UserActionModel extends RSEModelObject implements IUserActionModel
|
|||
* @see org.eclipse.rse.core.model.IRSEPersistableContainer#getPersistableChildren()
|
||||
*/
|
||||
public IRSEPersistableContainer[] getPersistableChildren() {
|
||||
return null;
|
||||
return new IRSEPersistableContainer[0];
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
|
|
Loading…
Add table
Reference in a new issue