Index: tools/dom/templates/html/impl/impl_HTMLElement.darttemplate |
diff --git a/tools/dom/templates/html/impl/impl_HTMLElement.darttemplate b/tools/dom/templates/html/impl/impl_HTMLElement.darttemplate |
index 1d126319e53388315f106ecdf964f9255fe309a9..2f16d16aafcee46035e069b8696765e3202ec689 100644 |
--- a/tools/dom/templates/html/impl/impl_HTMLElement.darttemplate |
+++ b/tools/dom/templates/html/impl/impl_HTMLElement.darttemplate |
@@ -7,18 +7,4 @@ part of $LIBRARYNAME; |
@DocsEditable() |
$(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS { |
$!MEMBERS |
-$if DARTIUM |
- // Flags to only try upgrading once. If there's a failure don't try upgrading |
- // anymore. |
- bool _badUpgradeOccurred = false; |
- |
- /// Required for SDK Infrastructure. Internal use only. |
- /// |
- /// Did this encounter a failure attempting to upgrade to |
- /// a custom element. |
- @Deprecated("Required for SDK Infrastructure. Internal use only.") |
- bool get isBadUpgrade => _badUpgradeOccurred; |
- |
- void _badUpgrade() { _badUpgradeOccurred = true; } |
-$endif |
} |