Should App Constructor call super Constructor

I need to override the app constructor method on a terminal app so I can set the Windows COM privileges before they are set themselves by Xojo (this is recommended by the plugin requiring this), when creating the method I notice that no call to a super is generated nor any other code. It seems to work fine this way but I want to double check in case there are any weird behaviours associated with this.

Do I need to add any alls to methods from superclasses or elsewhere when adding a Constructor method to the App object in Xojo Terminal apps.

Generally the IDE will automatically add them if needed and if you add it and it’s not needed, you’ll get a compile error.

Thanks. If thats the case I’ll take it as is.