org.sonar.l10n.delphi.rules.community-delphi.EmptyVisibilitySection.html Maven / Gradle / Ivy
The newest version!
Why is this an issue?
Empty visibility sections are superfluous and should be removed.
How to fix it
Remove the empty visibility section:
type
TFoo = class(TObject)
private
public
procedure Bar;
end;
type
TFoo = class(TObject)
public
procedure Bar;
end;
© 2015 - 2024 Weber Informatics LLC | Privacy Policy