Skip to content

Commit 78cc0f9

Browse files
nizarbenallaliach
authored andcommittedJul 17, 2024
8336091: Fix HTML warnings in the generated HTML files
Reviewed-by: dholmes
1 parent bcb5e69 commit 78cc0f9

File tree

1 file changed

+2
-2
lines changed
  • make/jdk/src/classes/build/tools/fixuppandoc

1 file changed

+2
-2
lines changed
 

‎make/jdk/src/classes/build/tools/fixuppandoc/Main.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -638,7 +638,7 @@ void write(PrintWriter out) {
638638
index++;
639639
}
640640
boolean updateEndTd = false;
641-
Pattern styleAttr = Pattern.compile("(?<before>.*style=\")(?<style>[^\"]*)(?<after>\".*)");
641+
Pattern styleAttr = Pattern.compile("(?s)(?<before>.*style=\")(?<style>[^\"]*)(?<after>\".*)");
642642
for (Entry e : entries) {
643643
if (simple && e.column == maxIndex) {
644644
String attrs = e.html.substring(3, e.html.length() - 1);

0 commit comments

Comments
 (0)
Please sign in to comment.