Hi everyone, On 06/21/2010 12:55 PM, Denis Gervalle wrote:
Hi Devs,
Currently we do not have any code style specification for imports. To improve clarity of our commits, I propose that we decide once for all how we would like to have imports. Of course, normalisation of existing code will come with normal commit, I do not intend to update it only for that.
Currently,
Eclipse does java.*, org.*, com.* separated by blank lines IntelliJ IDEA does com.*,org.* together, than a blank line and java.* Old existing code has there own ordering...
I propose the following style:
import java.*
How about import junit.* somewhere here? Regards, Alex
import org.* import com.* import <anything else>
import org.xwiki.* import com.xpn.*
import static <any>
If we agree on this, necessary IDE setup for both Eclipse and IntelliJ should be prepare/updated. I will take IntelliJ in charge, a volunteer for Eclipse is welcome (Thomas?)
WDYT ?
Denis