I have a class U and in the constuctor of the class I call overridable method which is public.
NetBeans warns me: Overridable method call in constructor
However, I don't override the method in my project, since class U has no subclasses.. Is it OK to leave it like this? ....calling overridable method in the constructor in this case?