Possible Duplicate:
How can I identify and get rid of unused units in the “uses clause” in Delphi 7?
is there a too that can check for unneeded uses units, that expand the project beyond its needs?
example we have
unit a;
uses b,c;
procedure aP;
var bI:Tb;
begin
bI := Tb.create;
bI.free;
end;
end.
where there is no use of c. c was introduced to the project, and never being used at the project.