aboutsummaryrefslogtreecommitdiffstats
path: root/c_litems.go
diff options
context:
space:
mode:
Diffstat (limited to 'c_litems.go')
-rw-r--r--c_litems.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/c_litems.go b/c_litems.go
index 7fa93c3..44831ff 100644
--- a/c_litems.go
+++ b/c_litems.go
@@ -64,24 +64,6 @@ type ItemsList struct {
last *ItemsNode
}
-func (litems *ItemsList) is_dir(id int) bool {
- curr := litems.head
-
- if curr == nil {
- return false
- }
- for curr.next != nil && curr.ID != id {
- curr = curr.next
- }
- if curr.ID != id {
- return false
- }
- if curr.Dirs != nil {
- return true
- }
- return false
-}
-
func (litems *ItemsList) add_back(node *ItemsNode) {
if litems.head == nil {
litems.head = node