Re: [flexcoders] import * vs. import a.b.c performance?

2007-01-28 Thread Michael Schmalle
It would also be nice if the linker was connected to the 'Organize Imports' command to get ride of the weeds. As you build a class, sometimes you don't end up using what was imported and you know but its a pain in the ass to find them. Peace, Mike On 1/27/07, JesterXL [EMAIL PROTECTED] wrote:

[flexcoders] import * vs. import a.b.c performance?

2007-01-27 Thread Mike Crowe
Hi folks, Any downside of doing an: import * vs. import com.adobe.cairngorm.control.CairngormEventDispatcher; for example? Any reason not to do this? TIA Mike

Re: [flexcoders] import * vs. import a.b.c performance?

2007-01-27 Thread JesterXL
import * == for slackers import a.b.c == for pimp-tastic Flex coders import * allows the compiler to look in the package to find the class it needs. If you don't have *, you have to set it manually. Both will result in the same amount of classes being exported into the SWF, so file size