eclipse plugin: Remove debug printing

This commit is contained in:
Timotei Dolean 2011-07-13 20:46:55 +00:00
parent 3f3b96668d
commit b64c329b2a
2 changed files with 0 additions and 6 deletions

View file

@ -89,8 +89,6 @@ public class DependencyListBuilder implements Serializable
directoriesEntries_.clear( );
internal_addContainer( project_.getProjectRelativePath( ).toString( ) );
System.out.println( toString( ) );
}
/**
@ -545,7 +543,6 @@ public class DependencyListBuilder implements Serializable
++prevIndex;
}
}
System.out.println( toString( ) );
}
/**

View file

@ -187,15 +187,12 @@ public class WesnothProjectBuilder extends IncrementalProjectBuilder
projectCache_.getDependencyList( ).removeNode( file );
projectCache_.getConfigs().remove( file.getProjectRelativePath( ).toString( ) );
//debug
System.out.println( "After removal: " + list.toString( ) );
} else if ( deltaKind == IResourceDelta.ADDED ){
DependencyListNode newNode = list.addNode( file );
if ( newNode == null )
Logger.getInstance( ).logError( "Couldn't create a new" +
"PDL node for file: " + file.getFullPath( ).toString( ) );
else {
System.out.println( list.toString( ) );
nodesToProcess.add( newNode );
}
} else if ( deltaKind == IResourceDelta.CHANGED ) {