소스 검색

Fixed minor issue with function calls

return null when application of function is null
Christophe Debruyne 7 년 전
부모
커밋
2733b46a11
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/r2rml/function/JSEnv.java

+ 1 - 1
src/r2rml/function/JSEnv.java

@@ -45,7 +45,7 @@ public class JSEnv {
 			throws NoSuchMethodException, ScriptException {
 		Invocable invokeEngine = (Invocable) engine;
 		Object o = invokeEngine.invokeFunction(functionName, parameters);
-		return o.toString();
+		return o == null ? null : o.toString();
 	}
 
 	/**