removed file paths

This commit is contained in:
René Fuhry 2023-05-15 17:30:13 +02:00 committed by GitHub
parent 62206a962b
commit d690dd69d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
public class TestGraph {
public static void main(String[] args) {
Graph g = new Graph("/home/old/projects/Java/graphprogram/24n_01.csv");
Graph g = new Graph("");
System.out.println(g);
}
}

View File

@ -1,6 +1,6 @@
public class TestMatrix {
public static void main(String[] args) {
Matrix matrix = new Matrix("/home/old/projects/Java/graphprogram/24n_01.csv");
Matrix matrix = new Matrix("");
Matrix scalarProduct;
System.out.println("RowLength: " + matrix.getRowLength());