如何阻止 Eclipse 自动修改代码?

How to stop Eclipse from auto modifying code?

谁能告诉我如何在 Eclipse 中特别是在 Oxygen 中关闭自动 replace/refactoring/correction 功能?

让我解释一下我的情况。我有一个 class Device.

public class Device extends Model {}

现在当我尝试写-

List<Device> devices = Device.findAll();

Eclipse 将其替换为-

List<Device> devices = Model.findAll();

现在我不想那样了。我怎样才能阻止 Eclipse 变得太聪明?

实际上是 "save action" 负责: Window -> 保存操作 -> 配置 -> 在 'Member Accesses' 选项卡中,有一个 'Static accesses' 部分,其中有一个 'change all accesses through subtypes' 您想要 un-check 见证奇迹的发生。