Suppose I'm implementing an MVP pattern and I have a view interface as such:
interface IView {
string SuperRadString { set; }
}
There's no reason for the presenter to ever need to retrieve this string from the view, so can I safely ignore this error?