forked from mystiq/hydrogen-web
Make setAsContextOf private
This commit is contained in:
parent
091b55a265
commit
66fa8d84a7
1 changed files with 2 additions and 2 deletions
|
@ -47,10 +47,10 @@ export class EventEntry extends BaseEventEntry {
|
||||||
|
|
||||||
setContextEntry(entry) {
|
setContextEntry(entry) {
|
||||||
this._contextEntry = entry;
|
this._contextEntry = entry;
|
||||||
entry.setAsContextOf(this);
|
entry._setAsContextOf(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
setAsContextOf(entry) {
|
_setAsContextOf(entry) {
|
||||||
if (!this._contextForEntries) {
|
if (!this._contextForEntries) {
|
||||||
this._contextForEntries = [];
|
this._contextForEntries = [];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue