diff options
| author | ayyansea <ayyansea@gmail.com> | 2024-11-27 23:28:05 +0300 |
|---|---|---|
| committer | ayyansea <ayyansea@gmail.com> | 2024-11-27 23:28:05 +0300 |
| commit | d0b5612d38595e8147aa9c75cbb5bb2c3fc81bbe (patch) | |
| tree | f8d7dc049559b52ba33adb929a8b83f3740b082f /internal/token/linked_token_list.go | |
| parent | 1a1411acb16b53d08ed8088d7fd3fabbb253a4e8 (diff) | |
feat: revamped program logic and removed unnecessary methods and modules
Diffstat (limited to 'internal/token/linked_token_list.go')
| -rw-r--r-- | internal/token/linked_token_list.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/internal/token/linked_token_list.go b/internal/token/linked_token_list.go index 5fe42a9..5115f75 100644 --- a/internal/token/linked_token_list.go +++ b/internal/token/linked_token_list.go @@ -28,9 +28,3 @@ func (lts *LinkedTokenList) AddToken(content string) { lts.tail = newToken } } - -func SliceToLinkedTokenSlice(slice []string, tokenSlice *LinkedTokenList) { - for _, item := range slice { - tokenSlice.AddToken(item) - } -} |
