Make unused file not cause errors

This commit is contained in:
Jan Philipp Timme 2016-12-08 12:37:06 +01:00
parent 30c30881d6
commit bbce5d2466
Signed by untrusted user: JPT
GPG Key ID: 5F2C85EC6F3754B7
1 changed files with 2 additions and 0 deletions

View File

@ -40,6 +40,7 @@ public class BatchNetdataImportService extends AbstractNetdataImportService {
@Override
public void afterImport() {
/*
OGraphBatchInsert batch = new OGraphBatchInsert("plocal:your/db", "admin", "admin");
//phase 1: begin
batch.begin();
@ -62,6 +63,7 @@ public class BatchNetdataImportService extends AbstractNetdataImportService {
// is equivalent to (but less performing than)
batch.createEdge(0L, 1L, props);
//batch.createVertex(Long) is needed only if you want to create unconnected vertices
*/
}
}