Kaynağa Gözat

Removing deprecated parameter (#12004) (#12007)

Fixes: https://github.com/vaadin/framework/issues/11958

Authored-by: Tatu Lund <tatu@vaadin.com>
tags/8.11.0
Anna Koskinen 4 yıl önce
ebeveyn
işleme
599e39c658
No account linked to committer's email address

+ 1
- 2
server/src/main/java/com/vaadin/server/BootstrapHandler.java Dosyayı Görüntüle

@@ -510,8 +510,7 @@ public abstract class BootstrapHandler extends SynchronizedRequestHandler {

Document document = response.getDocument();

DocumentType doctype = new DocumentType("html", "", "",
document.baseUri());
DocumentType doctype = new DocumentType("html", "", "");
document.child(0).before(doctype);

Element head = document.head();

Loading…
İptal
Kaydet