summaryrefslogtreecommitdiff
path: root/src/SortedList.vala
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2018-05-01 14:43:08 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2018-05-01 14:43:08 +0200
commit2b3f22361da0c1d8e6ce70d71352821758186db7 (patch)
tree5d10633b47369b3aa52a05bf889ede0dbe5ee108 /src/SortedList.vala
parent211da5fc3048ca2b6ccee2166b0aaaade55cb84f (diff)
parentdc6c76eb04dfe3d4262a1806808f0bc0bf523238 (diff)
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'src/SortedList.vala')
-rw-r--r--src/SortedList.vala16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/SortedList.vala b/src/SortedList.vala
index 00672ab..20e6771 100644
--- a/src/SortedList.vala
+++ b/src/SortedList.vala
@@ -6,22 +6,6 @@
public delegate int64 Comparator(void *a, void *b);
-extern string g_utf8_collate_key_for_filename(string str, ssize_t len = -1);
-
-public int64 file_comparator(void *a, void *b) {
- string? path_a = ((File *) a)->get_path();
- string? path_b = ((File *) b)->get_path();
-
- // if both are null, treat as equal; if one but not the other, prioritize the non-null
- if (path_a == null)
- return (path_b == null) ? 0 : 1;
-
- if (path_b == null)
- return -1;
-
- return strcmp(g_utf8_collate_key_for_filename(path_a), g_utf8_collate_key_for_filename(path_b));
-}
-
public class SortedList<G> : Object, Gee.Traversable<G>, Gee.Iterable<G>, Gee.Collection<G> {
private Gee.ArrayList<G> list;
private unowned Comparator? cmp;