1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 10:16:03 +02:00

IndexOutOfBound exception

This commit is contained in:
Alain Magloire 2004-04-30 15:36:20 +00:00
parent 4b87d64900
commit 2c54ea985e

View file

@ -103,7 +103,7 @@ public class PathEntryManager implements IPathEntryStoreListener, IElementChange
IPathEntry[] containerEntries = container.getPathEntries();
if (containerEntries != null) {
for (int j = 0; j < containerEntries.length; j++) {
list.add(containerEntries[i]);
list.add(containerEntries[j]);
}
}
}