allocate _poolIds before use

This commit is contained in:
Frank 2011-01-14 10:24:35 -08:00
parent 0f8da4093d
commit e736919494

View File

@ -100,6 +100,9 @@ public interface DeploymentPlanner extends Adapter {
}
public void addPool(long poolId) {
if (_poolIds == null) {
_poolIds = new HashSet<Long>();
}
_poolIds.add(poolId);
}