Skip to content

Commit 64f98c0

Browse files
committed
fix formatting issues for making Debian package
1 parent 4943ff6 commit 64f98c0

File tree

8 files changed

+7
-10
lines changed

8 files changed

+7
-10
lines changed

DESCRIPTION

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
Name: jsonlab
22
Version: 2.0.0
33
Date: 2020-06-13
4-
54
Title: A JSON/UBJSON/MessagePack encoder/decoder for MATLAB/Octave
65
Author: Qianqian Fang <[email protected]>
76
Maintainer: Qianqian Fang <[email protected]>
8-
97
Description: JSONLab is a free and open-source implementation of a JSON/UBJSON/MessagePack
108
encoder and a decoder in the native MATLAB language. It can be used to convert
119
a MATLAB data structure (array, struct, cell, struct array and cell array) into
1210
JSON/UBJSON formatted string, or decode a JSON/UBJSON/MessagePack file into
1311
MATLAB data. JSONLab supports both MATLAB and GNU Octave (a free MATLAB clone).
14-
1512
URL: http://openjdata.org/jsonlab
1613
Categories: JSON

encodevarname.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@
6060
str=[str str0(pos0(end-1)+1:pos0(end))];
6161
end
6262
end
63-
end
63+
end

gzipdecode.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@
6666
varargout{1}=typecast(varargout{1},inputinfo.type);
6767
varargout{1}=reshape(varargout{1},inputinfo.size);
6868
end
69-
end
69+
end

jload.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@
105105
if(nargout>1)
106106
varargout{2}=header;
107107
end
108-
end
108+
end

loadubjson.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@
3636
% -- this function is part of JSONLab toolbox (http://iso2mesh.sf.net/cgi-bin/index.cgi?jsonlab)
3737
%
3838

39-
[varargout{1:nargout}]=loadbj(varargin{:});
39+
[varargout{1:nargout}]=loadbj(varargin{:});

nestbracket2dim.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@
5050
dims=histc(count,1:maxlevel);
5151
dims(1:end-1)=dims(1:end-1)*0.5;
5252
dims(2:end)=dims(2:end)./dims(1:end-1);
53-
dims=fliplr(dims);
53+
dims=fliplr(dims);

savemsgpack.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@
2828
msgpk=savebj(rootname,obj,'FileName',varargin{1},'MessagePack',1);
2929
else
3030
msgpk=savebj(rootname,obj,varargin{:},'MessagePack',1);
31-
end
31+
end

zlibdecode.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@
6767
varargout{1}=typecast(varargout{1},inputinfo.type);
6868
varargout{1}=reshape(varargout{1},inputinfo.size);
6969
end
70-
end
70+
end

0 commit comments

Comments
 (0)