Skip to content

Commit ca9fa06

Browse files
committed
Fix currentView accessibility after rebase
Signed-off-by: Ian Thomas <[email protected]>
1 parent 4f42a4c commit ca9fa06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/core/streamingviewbasedjsonmodel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ export class StreamingViewBasedJSONModel extends ViewBasedJSONModel {
5555
this._currentView.setData(options.value, options.row, options.column);
5656
}
5757

58-
protected get currentView(): StreamingView {
58+
get currentView(): StreamingView {
5959
return this._currentView;
6060
}
6161

62-
protected set currentView(view: StreamingView) {
62+
set currentView(view: StreamingView) {
6363
super.currentView = view;
6464
}
6565

0 commit comments

Comments
 (0)