每当我在macOS 10.12.6中打开新的终端外壳时,都会有很长的暂停时间,并且会收到以下消息:
public class SomeClass {
private final ReadOnlyStringWrapper message = new ReadOnlyStringWrapper(this, "message");
private void setMessage(String message) {
this.message.set(message);
}
public final String getMessage() {
return message.get();
}
public final ReadOnlyStringProperty messageProperty() {
return message.getReadOnlyProperty();
}
}
我认为这是在我将系统php升级到7.1.19时开始发生的。它已安装到/ usr / local / bin / php。我删除了所有其他与PHP有关的啤酒水龙头。也不存在与php相关的Error: No available formula with the name "homebrew/php/php55"
相关问题。
我已经检查了brew doctor
,.bashrc
,.bash_profile
和.zshrc
文件中是否有任何可能引用PHP的内容,但没有发现任何内容。
我不确定此错误来自何处或如何消除此错误。
欢迎提出任何建议!