Procházet zdrojové kódy

Minor bug fix

Wrong check in arguments fixed.
Christophe Debruyne před 6 roky
rodič
revize
ad98a91718
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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);
 			}