Skip to content

Commit

Permalink
fix issues found by dependency check
Browse files Browse the repository at this point in the history
  • Loading branch information
fangq committed Apr 20, 2022
1 parent 94167bb commit 6cf82a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jsonget.m
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@

if(isstruct(fname) || iscell(fname) || isa(fname,'table') || isa(fname,'containers.Map'))
for i=1:length(keylist)
json{end+1}=getobjfrompath(fname,keylist{i});
json{end+1}=getfromjsonpath(fname,keylist{i});
end
if(length(json)==1)
json=json{1};
Expand Down
2 changes: 1 addition & 1 deletion loadjson.m
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@
pos=endpos;
pos=parse_char(inputstr, pos, ']');
if(pbar>0)
waitbar(pos/length(inStr),pbar,'loading ...');
waitbar(pos/length(inputstr),pbar,'loading ...');
end
return;
end
Expand Down

0 comments on commit 6cf82a6

Please sign in to comment.