mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Fix for 68226
* model/org/eclipse/cdt/internal/core/model/CElementInfo.java
This commit is contained in:
parent
315a4fc293
commit
c8ac64322a
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-06-24 Alain Magloire
|
||||
|
||||
Fix for 68226
|
||||
* model/org/eclipse/cdt/internal/core/model/CElementInfo.java
|
||||
|
||||
2004-06-22 Alain Magloire
|
||||
Part of PR 68246.
|
||||
Close the inputstream to release resource handle
|
||||
|
|
|
@ -6,8 +6,8 @@ package org.eclipse.cdt.internal.core.model;
|
|||
*/
|
||||
|
||||
import java.io.File;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Vector;
|
||||
|
||||
import org.eclipse.cdt.core.model.ICElement;
|
||||
import org.eclipse.core.resources.IResource;
|
||||
|
@ -43,7 +43,7 @@ class CElementInfo {
|
|||
protected CElementInfo(CElement element) {
|
||||
this.element = element;
|
||||
// Array list starts with size = 0
|
||||
fChildren = new ArrayList(0);
|
||||
fChildren = new Vector(0);
|
||||
}
|
||||
|
||||
protected CElement getElement() {
|
||||
|
|
Loading…
Add table
Reference in a new issue