v2: remove left over testing printlns

pull/3779/head
joe-conigliaro 2020-02-19 16:06:16 +11:00
parent f91bded9b3
commit 9b271d1728
1 changed files with 0 additions and 2 deletions

View File

@ -6,11 +6,9 @@ import os
// this is not optimal
pub fn (table &Table) qualify_module(mod string, file_path string) string {
for m in table.imports {
println('TABLE IMPORT: $m')
if m.contains('.') && m.contains(mod) {
m_parts := m.split('.')
m_path := m_parts.join(os.path_separator)
println('IMPORT B: $m - $m_path')
if mod == m_parts[m_parts.len - 1] && file_path.contains(m_path) {
return m
}