I just wondered, what is the benefit of listing each class in imports separately instead of using a wildcard?
import flash.display.Sprite;
import flash.display.Loader;
import flash.display.Graphics;
... and so on...
import flash.display.*;
Is there any benefit at all?