On closer investigation nothing was using this interface.
Signed-off-by: Tobias Ulmer <tu@emlix.com>
--- Dictionary holding all source objects indexed by their name.
source.sources = {}
---- Array holding all source objects in alphabetical order.
-source.sources_sorted = {}
--- Gather source paths.
-- @param info Info table.
source.sources[src:get_name()] = src
end
- for sourcename,_ in pairs(source.sources) do
- table.insert(source.sources_sorted, sourcename)
- end
- table.sort(source.sources_sorted)
-
return true
end