All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.delphi.rules.community-delphi.MixedNames.html Maven / Gradle / Ivy

There is a newer version: 1.12.1
Show newest version

Why is this an issue?

While Delphi is case-insensitive, casing of name declarations and references should be kept consistent to aid readability.

How to fix it

Rename the identifier to match the casing in the original declaration:

procedure FooBar;
begin
  // ...
end;

procedure Example;
begin
  Foobar;
end;
procedure FooBar;
begin
  // ...
end;

procedure Example;
begin
  FooBar;
end;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy