* pas2jni: Skip var parameters of unsupported types.

git-svn-id: trunk@43381 -
This commit is contained in:
yury 2019-11-03 14:26:00 +00:00
parent b4e0c72cbe
commit b988837d1b

View File

@ -864,10 +864,13 @@ begin
if (VarType <> nil) and (VarType.DefType = dtJniEnv) then
continue;
s:=s + '; ' + Name + ': ';
ss:=DefToJniType(VarType, err);
if not IsJavaVarParam(vd) then
s:=s + DefToJniType(VarType, err)
s:=s + ss
else begin
s:=s + 'jarray';
if not err then
ss:='jarray';
s:=s + ss;
if tempvars = nil then
tempvars:=TStringList.Create;
if VarType = nil then