OPTI5-Virtual methods (procedures/functions) that are not overridden

Top  Previous  Next

 

Virtual methods (procedures/functions) that are not overridden (OPTI5)

 

This is a list of all methods that are declared as virtual, but that never are overridden. Since virtual methods have slightly worse performance than static methods, it is better to change these methods to static ones instead.

 

This section is also generated for multi-projects.

 

 

Recommendation:

 

Examine if these methods should really be overridden. If they belong to a base class, you should probably keep them virtual, so descendant classes can create their own implementations.

 

 

See also:

 

Optimizations