Deleted a forgotten print statement

This commit is contained in:
Celine Mercier
2016-02-18 15:15:42 +01:00
parent a8f03248a8
commit ffc68d448f

View File

@ -240,7 +240,6 @@ cdef class OBIView :
line_selection_p = <index_t*> malloc((len(line_selection) + 1) * sizeof(index_t))
for i in range(len(line_selection)) :
line_selection_p[i] = line_selection[i] # TODO type problem?
print(line_selection_p[i], line_selection[i])
line_selection_p[len(line_selection)] = -1
else :
line_selection_p = NULL