Browse Source

Removed duplicate method

Carl Husberg 3 years ago
parent
commit
0b94ed90e6
1 changed files with 0 additions and 11 deletions
  1. 0 11
      collections.mod/linkedlist.bmx

+ 0 - 11
collections.mod/linkedlist.bmx

@@ -33,17 +33,6 @@ Public
 		End If
 	End Method
 
-	Rem
-	bbdoc: Creates a new #TLinkedList initialised by @array.
-	End Rem
-	Method New(array:T[])
-		If array Then
-			For Local element:T = EachIn array
-				AddLast(element)
-			Next
-		End If
-	End Method
-
 	Rem
 	bbdoc: Returns an iterator that iterates through the #TLinkedList.
 	End Rem