From 8591172bb2665e2a508a3d95f7a53482249ecdf8 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Sat, 5 Sep 2020 05:40:20 -0700 Subject: [PATCH] Removed obsolete System.Collections.Generic --- BeefLibs/corlib/src/Collections/BinaryHeap.bf | 6 ------ BeefLibs/corlib/src/Collections/Dictionary.bf | 6 ------ BeefLibs/corlib/src/Collections/HashSet.bf | 6 ------ BeefLibs/corlib/src/Collections/List.bf | 5 ----- BeefLibs/corlib/src/Collections/Queue.bf | 6 ------ BeefLibs/corlib/src/Collections/Sorter.bf | 6 ------ 6 files changed, 35 deletions(-) diff --git a/BeefLibs/corlib/src/Collections/BinaryHeap.bf b/BeefLibs/corlib/src/Collections/BinaryHeap.bf index ecb47e21..fe5a7a44 100644 --- a/BeefLibs/corlib/src/Collections/BinaryHeap.bf +++ b/BeefLibs/corlib/src/Collections/BinaryHeap.bf @@ -116,9 +116,3 @@ namespace System.Collections } } } - -namespace System.Collections.Generic -{ - [Obsolete("The System.Collections.Generic types have been moved into System.Collections", false)] - typealias BinaryHeap = System.Collections.BinaryHeap; -} diff --git a/BeefLibs/corlib/src/Collections/Dictionary.bf b/BeefLibs/corlib/src/Collections/Dictionary.bf index e398a2d8..23446596 100644 --- a/BeefLibs/corlib/src/Collections/Dictionary.bf +++ b/BeefLibs/corlib/src/Collections/Dictionary.bf @@ -1139,9 +1139,3 @@ namespace System.Collections } } } - -namespace System.Collections.Generic -{ - [Obsolete("The System.Collections.Generic types have been moved into System.Collections", false)] - typealias Dictionary = System.Collections.Dictionary; -} diff --git a/BeefLibs/corlib/src/Collections/HashSet.bf b/BeefLibs/corlib/src/Collections/HashSet.bf index 141dfa19..3255166f 100644 --- a/BeefLibs/corlib/src/Collections/HashSet.bf +++ b/BeefLibs/corlib/src/Collections/HashSet.bf @@ -1164,9 +1164,3 @@ namespace System.Collections } } } - -namespace System.Collections.Generic -{ - [Obsolete("The System.Collections.Generic types have been moved into System.Collections", false)] - typealias HashSet = System.Collections.HashSet; -} diff --git a/BeefLibs/corlib/src/Collections/List.bf b/BeefLibs/corlib/src/Collections/List.bf index 5cb15086..7af0b9e8 100644 --- a/BeefLibs/corlib/src/Collections/List.bf +++ b/BeefLibs/corlib/src/Collections/List.bf @@ -914,8 +914,3 @@ namespace System.Collections } } -namespace System.Collections.Generic -{ - [Obsolete("The System.Collections.Generic types have been moved into System.Collections", false)] - typealias List = System.Collections.List; -} diff --git a/BeefLibs/corlib/src/Collections/Queue.bf b/BeefLibs/corlib/src/Collections/Queue.bf index a06ea748..ed538f55 100644 --- a/BeefLibs/corlib/src/Collections/Queue.bf +++ b/BeefLibs/corlib/src/Collections/Queue.bf @@ -459,9 +459,3 @@ namespace System.Collections } } } - -namespace System.Collections.Generic -{ - [Obsolete("The System.Collections.Generic types have been moved into System.Collections", false)] - typealias Queue = System.Collections.Queue; -} diff --git a/BeefLibs/corlib/src/Collections/Sorter.bf b/BeefLibs/corlib/src/Collections/Sorter.bf index 654cc94f..68d4248a 100644 --- a/BeefLibs/corlib/src/Collections/Sorter.bf +++ b/BeefLibs/corlib/src/Collections/Sorter.bf @@ -299,9 +299,3 @@ namespace System.Collections } } } - -namespace System.Collections.Generic -{ - [Obsolete("The System.Collections.Generic types have been moved into System.Collections", false)] - typealias Sorter = System.Collections.Sorter; -}