Remove redundant TArray<T> declaration in Generics.Collections. Was introduced before objpas.TArray<T> declaration but objpas.TArray<T> is more proper and Delphi compatible.

git-svn-id: trunk@35406 -
This commit is contained in:
maciej-izak 2017-02-06 22:16:49 +00:00
parent b38243c5cb
commit 79076c695d

View File

@ -55,8 +55,6 @@ uses
}
type
TArray<T> = array of T; // for name TArray<T> conflict with TArray record implementation (bug #26030)
// bug #24254 workaround
// should be TArray = record class procedure Sort<T>(...) etc.
TCustomArrayHelper<T> = class abstract