mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-11 18:25:40 +02:00
compilation warnings
This commit is contained in:
parent
54c487b625
commit
6cffc42499
1 changed files with 3 additions and 1 deletions
|
@ -72,7 +72,9 @@ public class MakeBuilder extends ACBuilder {
|
||||||
* @see IncrementalProjectBuilder#build
|
* @see IncrementalProjectBuilder#build
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
protected IProject[] build(int kind, Map args, IProgressMonitor monitor) throws CoreException {
|
protected IProject[] build(int kind, @SuppressWarnings("rawtypes") Map args0, IProgressMonitor monitor) throws CoreException {
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
Map<String, String> args = args0;
|
||||||
if (DEBUG_EVENTS)
|
if (DEBUG_EVENTS)
|
||||||
printEvent(kind, args);
|
printEvent(kind, args);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue