Skip to content
Snippets Groups Projects
Verified Commit bcba4ae7 authored by Houtan Bastani's avatar Houtan Bastani
Browse files

remove superfluous asserts

parent fd3b88a2
Branches
No related tags found
No related merge requests found
......@@ -34,7 +34,6 @@ function write(o, fid, pg, sec, row, col, rep_dir)
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
assert(fid ~= -1);
graphName = writeGraphFile(o, pg, sec, row, col, rep_dir);
fprintf(fid, '\\input{%s}', graphName);
end
\ No newline at end of file
......@@ -31,8 +31,6 @@ function write(o, fid, pg, rep_dir)
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
assert(fid ~= -1);
fprintf(fid, '\n%% Page Number %d written %s\n', pg, datestr(now));
if strcmpi(o.orientation, 'landscape')
fprintf(fid, '\\begin{landscape}\n');
......
......@@ -29,7 +29,6 @@ function write(o, fid)
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
assert(fid ~= -1);
fprintf(fid, '%% Paragraph Object written %s\n', datestr(now));
fprintf(fid, '\\multicolumn{1}{p{\\linewidth}}{%%\n');
if o.cols ~= 1
......
......@@ -31,10 +31,6 @@ function writeDataForTable(o, fid, precision)
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
%% Validate options passed to function
assert(fid ~= -1);
assert(isint(precision));
%% Validate options provided by user
assert(ischar(o.tableSubSectionHeader), '@report_data.writeDataForTable: tableSubSectionHeader must be a string');
if isempty(o.tableSubSectionHeader)
......
......@@ -35,7 +35,6 @@ function writeSeriesForTable(o, fid, dates, precision, ncols, rowcolor)
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
%% Validate options passed to function
assert(fid ~= -1);
for i=1:length(dates)
assert(isdates(dates{i}));
end
......
......@@ -34,7 +34,6 @@ function write(o, fid, pg, sec, row, col, rep_dir)
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
assert(fid ~= -1);
tableName = writeTableFile(o, pg, sec, row, col, rep_dir);
fprintf(fid, '\\input{%s}', tableName);
end
......@@ -32,7 +32,6 @@ function write(o, fid, pg, sec, rep_dir)
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
assert(fid ~= -1);
fprintf(fid, '%% Section Object written %s\n', datestr(now));
if isempty(o.elements)
warning(['reporting:section.write(): trying to print a section ' ...
......
......@@ -29,8 +29,6 @@ function o = write(o, fid)
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
assert(fid ~= -1);
fprintf(fid, repmat(' \\par \\medskip ', 1, o.number));
if o.hline > 0
fprintf(fid, ['\\\\\n' repmat('\\midrule', 1, o.hline)]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment