소스 검색

Minor bug fix

Wrong check in arguments fixed.
Christophe Debruyne 6 년 전
부모
커밋
ad98a91718
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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);
 			}