Remove cmd notes make_sortable helper method

This commit is contained in:
Matthew Kienow 2018-04-12 10:51:03 -04:00
parent 518d672ad5
commit f60bbdd831
No known key found for this signature in database
GPG Key ID: 40787F8B1EAC6E41
1 changed files with 0 additions and 16 deletions

View File

@ -1130,22 +1130,6 @@ class Db
end
end
def make_sortable(input)
case input
when String
input = input.downcase
when Integer
input = "%016" % input
when Time
input = input.strftime("%Y%m%d%H%M%S%L")
when NilClass
input = ""
else
input = input.inspect.downcase
end
input
end
def cmd_loot_help
print_line "Usage: loot <options>"
print_line " Info: loot [-h] [addr1 addr2 ...] [-t <type1,type2>]"