mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56: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 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 List fConflictMatchList;
|
||||
|
|
|
@ -19,8 +19,8 @@ import org.eclipse.cdt.managedbuilder.internal.core.IRealBuildObjectAssociation;
|
|||
public class PerTypeMapStorage implements Cloneable {
|
||||
private ObjectTypeBasedStorage fStorage = new ObjectTypeBasedStorage();
|
||||
|
||||
public Map getMap(int type, boolean create){
|
||||
Map<IRealBuildObjectAssociation, Set> map = (Map<IRealBuildObjectAssociation, Set>)fStorage.get(type);
|
||||
public Map/*<IRealBuildObjectAssociation, ?>*/ getMap(int type, boolean create){
|
||||
Map<IRealBuildObjectAssociation, ?> map = (Map<IRealBuildObjectAssociation, ?>)fStorage.get(type);
|
||||
if(map == null && create){
|
||||
map = createMap(null);
|
||||
fStorage.set(type, map);
|
||||
|
|
Loading…
Add table
Reference in a new issue