Skip to content

Commit 243d7fd

Browse files
committed
Disable setting showDotCursor in RFB constructor
This has been deprecated for around six years now. Let's remove the deprecation warning and disable setting showDotCursor via the options parameter.
1 parent 88749fc commit 243d7fd

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

core/rfb.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -300,10 +300,6 @@ export default class RFB extends EventTargetMixin {
300300
this._resizeSession = false;
301301

302302
this._showDotCursor = false;
303-
if (options.showDotCursor !== undefined) {
304-
Log.Warn("Specifying showDotCursor as a RFB constructor argument is deprecated");
305-
this._showDotCursor = options.showDotCursor;
306-
}
307303

308304
this._qualityLevel = 6;
309305
this._compressionLevel = 2;

0 commit comments

Comments
 (0)