File tree Expand file tree Collapse file tree
main/java/com/pathdb/importing Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44
55 <groupId >com.pathdb</groupId >
66 <artifactId >pathdb</artifactId >
7- <version >0.1.0 -SNAPSHOT</version >
7+ <version >0.1.2 -SNAPSHOT</version >
88 <packaging >jar</packaging >
99
1010 <name >PathDB</name >
3636
3737 <!-- DEPENDENCIES -->
3838 <dependencies >
39- <!-- Neo4J-->
40- <dependency >
41- <groupId >org.neo4j</groupId >
42- <artifactId >neo4j</artifactId >
43- <version >3.0.6</version >
44- </dependency >
4539 <dependency >
4640 <groupId >com.opencsv</groupId >
4741 <artifactId >opencsv</artifactId >
Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ public class CSVImport
2525{
2626 private final PathIndex index ;
2727
28- public CSVImport ( PathIndex index )
28+ public
29+ CSVImport ( PathIndex index )
2930 {
3031 this .index = index ;
3132 }
Original file line number Diff line number Diff line change 77
88package com .pathdb .importing ;
99
10- import au .com .bytecode .opencsv .CSVWriter ;
10+ import static org .junit .Assert .assertEquals ;
11+
12+ import com .opencsv .CSVWriter ;
1113import com .pathdb .pathIndex .PathIndex ;
1214import com .pathdb .pathIndex .inMemoryTree .InMemoryIndexFactory ;
13- import org .junit .Test ;
14-
1515import java .io .File ;
1616import java .io .FileWriter ;
1717import java .io .IOException ;
18-
19- import static org .junit .Assert .assertEquals ;
18+ import org .junit .Test ;
2019
2120public class CSVImportTest
2221{
Original file line number Diff line number Diff line change 11/**
2- * Copyright (C) 2015-2017 - All rights reserved. This file is part of the pathdb project which is
3- * released under the GPLv3 license. See file LICENSE.txt or go to
4- * http://www.gnu.org/licenses/gpl.txt for full license details. You may use, distribute and modify
5- * this code under the terms of the GPLv3 license.
2+ * Copyright (C) 2015-2017 - All rights reserved.
3+ * This file is part of the pathdb project which is released under the GPLv3 license.
4+ * See file LICENSE.txt or go to http://www.gnu.org/licenses/gpl.txt for full license details.
5+ * You may use, distribute and modify this code under the terms of the GPLv3 license.
66 */
7+
78package com .pathdb .pathIndex .persisted ;
89
910import static com .jakewharton .byteunits .BinaryByteUnit .GIBIBYTES ;
You can’t perform that action at this time.
0 commit comments