Bug: Ctrl+Shift+C is duplicating nullable parameters

Take the class:

type x = class
  public
    method y(value: nullable DateTime);
end;

Then type in the implementation section:

method x.q;
begin
end;

press Ctrl-Shift-C

The class is now

type x = class
  private
    method q;
  public
    method y(value: nullable nullable DateTime);
end;

Never had an answer on this one, but it has been solved …

hrmm sorry about that. Glad it’s solved, I do know we fixed it, so maybe it was reported in two different places/by two different people.