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 a1e0724 commit 9e45585Copy full SHA for 9e45585
packages/base/src/widget.ts
@@ -1177,12 +1177,6 @@ export class DOMWidgetView extends WidgetView {
1177
* @deprecated Use {@link luminoWidget} instead (Since 8.0).
1178
*/
1179
get pWidget(): Widget {
1180
- if (!DOMWidgetView.deprecationWarningDisplayed) {
1181
- console.warn(
1182
- 'The use of pWidget is deprecated, use luminoWidget instead.'
1183
- );
1184
- DOMWidgetView.deprecationWarningDisplayed = true;
1185
- }
1186
return this.luminoWidget;
1187
}
1188
@@ -1191,5 +1185,4 @@ export class DOMWidgetView extends WidgetView {
1191
luminoWidget: Widget;
1192
layoutPromise: Promise<any>;
1193
stylePromise: Promise<any>;
1194
- private static deprecationWarningDisplayed = false;
1195
0 commit comments