From 48ff20493fb2360585934c45efd0f7f200d8dbdd Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Fri, 2 Apr 2021 12:26:32 +0200 Subject: [PATCH] Mark some internal `PDFDocumentProxy`-properties as "private" These two properties were *never* intended to be anything but "private", hence it really cannot hurt to actually indicate that they're *not* part of any official API. --- src/display/api.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/display/api.js b/src/display/api.js index 6549d85ab..fa501b074 100644 --- a/src/display/api.js +++ b/src/display/api.js @@ -1180,14 +1180,14 @@ class PDFPageProxy { * {Array} of the annotation objects. */ getAnnotations({ intent = null } = {}) { - if (!this.annotationsPromise || this.annotationsIntent !== intent) { - this.annotationsPromise = this._transport.getAnnotations( + if (!this._annotationsPromise || this._annotationsIntent !== intent) { + this._annotationsPromise = this._transport.getAnnotations( this._pageIndex, intent ); - this.annotationsIntent = intent; + this._annotationsIntent = intent; } - return this.annotationsPromise; + return this._annotationsPromise; } /** @@ -1490,7 +1490,7 @@ class PDFPageProxy { } } this.objs.clear(); - this.annotationsPromise = null; + this._annotationsPromise = null; this._jsActionsPromise = null; this._xfaPromise = null; this.pendingCleanup = false; @@ -1525,7 +1525,7 @@ class PDFPageProxy { this._intentStates.clear(); this.objs.clear(); - this.annotationsPromise = null; + this._annotationsPromise = null; this._jsActionsPromise = null; this._xfaPromise = null; if (resetStats && this._stats) {