Преглед изворни кода

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 година
родитељ
комит
599e39c658
No account linked to committer's email address
1 измењених фајлова са 1 додато и 2 уклоњено
  1. 1
    2
      server/src/main/java/com/vaadin/server/BootstrapHandler.java

+ 1
- 2
server/src/main/java/com/vaadin/server/BootstrapHandler.java Прегледај датотеку

@@ -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…
Откажи
Сачувај