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