Skip to content

Commit bda46ff

Browse files
committed
* inst/dbtable.m: hide _RawData method
1 parent 8c9eb2e commit bda46ff

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

inst/dbtable.m

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
endproperties
5252

5353
properties (Access = public)
54-
# TODO need provide a set ?
5554
Properties = struct ( ...
5655
'Description', "", ...
5756
'DimensionNames', {{'Row' 'Variables'}}, ...
@@ -463,12 +462,12 @@ function summary (this)
463462
data = this.subsref(substruct('{}', {rows:nrows, ':'}));
464463
tdata = dbtable(data{:}, 'VariableNames', names);
465464
endfunction
465+
endmethods
466466

467-
# TODO: hide ?
467+
methods (Access = hidden)
468468
function tdata = _RawData(this)
469469
tdata = this._data2;
470470
endfunction
471-
472471
endmethods
473472
endclassdef
474473

0 commit comments

Comments
 (0)