为什么导入在eclipse中奇怪地排序

时间:2016-11-22 14:52:39

标签: linux eclipse

当我使用Shift + Ctrl + O在Eclipse中组织我的导入时,我得到了一个与我的同事不同的奇怪订单。

出于某种原因,我得到了这个订单:

import java.util.concurrent.atomic.AtomicBoolean;
import start.mycompany.MyStartClass;
import com.mycompany.MyClass;

同事们得到:

import java.util.concurrent.atomic.AtomicBoolean;
import com.mycompany.MyClass;
import start.mycompany.MyStartClass;

我们所有人在Preferences->Java->Code Style->Organize Imports中都有相同的设置,即java,javax,org,com。

我在Linux上并且他们在Windows上 - 我们现在都在使用Eclipse Luna。

0 个答案:

没有答案