当我使用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。