Jelajahi Sumber

Minor bug fix

Wrong check in arguments fixed.
Christophe Debruyne 6 tahun lalu
induk
melakukan
ad98a91718
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      src/r2rml/Main.java

+ 1 - 1
src/r2rml/Main.java

@@ -39,7 +39,7 @@ public class Main {
 
 			Configuration configuration = new Configuration(args[0]);
 
-			if(configuration.getMappingFile() == null) {
+			if(configuration.getConnectionURL() == null) {
 				throw new R2RMLException("A connection URL is mandatory.", null);
 			}