Browse Source

Removing deprecated parameter (#12004)

* Removing deprecated parameter

Fixes: https://github.com/vaadin/framework/issues/11958
tags/8.12.0.alpha1
Tatu Lund 3 years ago
parent
commit
e39ca99654
No account linked to committer's email address
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      server/src/main/java/com/vaadin/server/BootstrapHandler.java

+ 1
- 2
server/src/main/java/com/vaadin/server/BootstrapHandler.java View File

@@ -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…
Cancel
Save