如何停止“可用快速修复”消息(Intellisense错误)

时间:2019-06-19 16:00:23

标签: visual-studio-code intellisense apex-code

我的课堂上有以下功能:

// Generate a random string
private static string getRandomString(Integer len) {
    final string chars = 'abcdefghijklmnopqrstuvwxyz';
    string out = '';

    while (out.length() < len) {
        Integer idx = Math.mod(Math.abs(Crypto.getRandomInteger()), chars.length());
        out += chars.substring(idx, idx+1);
    }
    return out;
}

我这样指称:

List<Account> acctList = new List<Account> {
    // Dummy account
    new Account(Name='DO NOT DELETE', Email='test' + getRandomString(5) + @mailinator.com')
};

此代码可以正常工作,但是VS Code将其标记为“缺少方法”。

enter image description here

我已经关闭了所有可以找到的“快速修复”设置,但似乎无法摆脱这些“问题”。谁能建议一种退出这些Intellisense“问题”的方法,还是我必须忍受呢?

0 个答案:

没有答案