X-Git-Url: http://nitlanguage.org diff --git a/contrib/neo_doxygen/src/graph_store.nit b/contrib/neo_doxygen/src/graph_store.nit index b15ae4f..0c396d3 100644 --- a/contrib/neo_doxygen/src/graph_store.nit +++ b/contrib/neo_doxygen/src/graph_store.nit @@ -17,7 +17,6 @@ module graph_store import neo4j import console -import flush_stdout # A storage medium for a graph. # @@ -40,17 +39,13 @@ abstract class GraphStore # # This method must be called before the first call to `show_progress` or # `show_done`. - protected fun prepare_display do - printn "{term_save_cursor} " - flush_stdout - end + protected fun prepare_display do printn "{term_save_cursor} " # Show the progress, in percentage. # # For use in the implementation of `save_all` only. protected fun show_progress(progress: Int) do printn "{term_rewind} {progress}% " - flush_stdout end # Show a message to indicate that the task finished with success. @@ -58,7 +53,6 @@ abstract class GraphStore # For use in the implementation of `save_all` only. protected fun show_done do print "{term_rewind} Done." - flush_stdout end end @@ -72,7 +66,7 @@ class Neo4jStore # The Neo4j client to use. var client: Neo4jClient - redef fun has_node_label(name: String): Bool do + redef fun has_node_label(name) do var query = new CypherQuery.from_string( "match n where \{name\} in labels(n) return count(n)") query.params["name"] = name @@ -81,7 +75,7 @@ class Neo4jStore return result > 0 end - redef fun save_all(neo_entities: Collection[NeoEntity]) do + redef fun save_all(neo_entities) do var batch = new NeoBatch(client) var len = neo_entities.length var sum = 0