Browse Source

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 -
maciej-izak 8 years ago
parent
commit
79076c695d
1 changed files with 0 additions and 2 deletions
  1. 0 2
      packages/rtl-generics/src/generics.collections.pas

+ 0 - 2
packages/rtl-generics/src/generics.collections.pas

@@ -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