소스 검색

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…
취소
저장