Apex Editor doesn't detect inheritance properly

Issue #1007 duplicate
Javier García Manzano created an issue

Given a parent and a child class, where the parent class implements the batchable interface, Illuminated Cloud gives a wrong error.

error.png

My clases are as follows:

global with sharing abstract class AbstractEmailSuffixBatch implements Database.Batchable<SObject> { ... }
global without sharing class ContactEmailSuffixBatch extends AbstractEmailSuffixBatch { ... }

Where the start method is declared abstract in the parent class.

Comments (4)

  1. Log in to comment