mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 02:06:01 +02:00
bug 319512: Missing type arguments on managedbuilder.core
This commit is contained in:
parent
f4220287f0
commit
a5fd16d96c
2 changed files with 3 additions and 3 deletions
|
@ -27,7 +27,7 @@ import org.eclipse.core.runtime.IPath;
|
||||||
|
|
||||||
public class ConflictSet {
|
public class ConflictSet {
|
||||||
public static final IConflict[] EMPTY_CONFLICT_ARRAY = new IConflict[0];
|
public static final IConflict[] EMPTY_CONFLICT_ARRAY = new IConflict[0];
|
||||||
public static final IRealBuildObjectAssociation[] EMPTY_BO_ARRAY = new IRealBuildObjectAssociation[0];
|
public static final IBuildObject[] EMPTY_BO_ARRAY = new IBuildObject[0];
|
||||||
|
|
||||||
private PerTypeMapStorage fConflictStorage;
|
private PerTypeMapStorage fConflictStorage;
|
||||||
private List fConflictMatchList;
|
private List fConflictMatchList;
|
||||||
|
|
|
@ -19,8 +19,8 @@ import org.eclipse.cdt.managedbuilder.internal.core.IRealBuildObjectAssociation;
|
||||||
public class PerTypeMapStorage implements Cloneable {
|
public class PerTypeMapStorage implements Cloneable {
|
||||||
private ObjectTypeBasedStorage fStorage = new ObjectTypeBasedStorage();
|
private ObjectTypeBasedStorage fStorage = new ObjectTypeBasedStorage();
|
||||||
|
|
||||||
public Map getMap(int type, boolean create){
|
public Map/*<IRealBuildObjectAssociation, ?>*/ getMap(int type, boolean create){
|
||||||
Map<IRealBuildObjectAssociation, Set> map = (Map<IRealBuildObjectAssociation, Set>)fStorage.get(type);
|
Map<IRealBuildObjectAssociation, ?> map = (Map<IRealBuildObjectAssociation, ?>)fStorage.get(type);
|
||||||
if(map == null && create){
|
if(map == null && create){
|
||||||
map = createMap(null);
|
map = createMap(null);
|
||||||
fStorage.set(type, map);
|
fStorage.set(type, map);
|
||||||
|
|
Loading…
Add table
Reference in a new issue