intellij idea - Different number of formal and actual parameters warning bug -
i've been using intellij main ide long time , since 2017.1 version struggling weird issue: methods used inside url annotations warning different number of formal , actual parameters
this warning makes no sense because method implemented allow none or 1 parameter, way used in print
public string getrole() { return tipomoduloobject.getrole(); } public string getrole(tipopermissao tipopermissao) { return getrole() + "_" + tipopermissao.name(); } what can wrong, bug intellij or different?

Comments
Post a Comment