We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da50707 commit 4911e79Copy full SHA for 4911e79
1 file changed
shared/api/utils/shared_doc_util.js
@@ -10,7 +10,7 @@ import { UtilProvider } from "./util_provider.js";
10
*/
11
export default class SharedDocUtil extends SharedUtil
12
{
13
- constructor(utilProvider)
+ constructor(utilProvider, rebuildCache = false)
14
15
super(utilProvider);
16
@@ -20,7 +20,7 @@ export default class SharedDocUtil extends SharedUtil
20
this.opdocsFilename = this._cables.getOpDocsFile();
21
this.opLookupFilename = this._cables.getOpLookupFile();
22
23
- this._rebuildOpDocCache = false;
+ this._rebuildOpDocCache = rebuildCache;
24
this.cachedOpDocs = null;
25
this.cachedLookup = null;
26
0 commit comments