Skip to content

Commit 867a484

Browse files
committed
8255214: Unsupported 'valign' attribute for 'th' tag used in j.u.l.LogManager
Reviewed-by: mchung, dfuchs
1 parent d3c43c2 commit 867a484

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/java.logging/share/classes/java/util/logging/LogManager.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1920,7 +1920,7 @@ public void updateConfiguration(Function<String, BiFunction<String,String,String
19201920
* </thead>
19211921
* <tbody>
19221922
* <tr>
1923-
* <th scope="row" valign="top">{@code <logger>.level}</th>
1923+
* <th scope="row" style="vertical-align:top">{@code <logger>.level}</th>
19241924
* <td>
19251925
* <ul>
19261926
* <li>If the resulting configuration defines a level for a logger and
@@ -1941,7 +1941,7 @@ public void updateConfiguration(Function<String, BiFunction<String,String,String
19411941
* </ul>
19421942
* </td>
19431943
* <tr>
1944-
* <th scope="row" valign="top">{@code <logger>.useParentHandlers}</th>
1944+
* <th scope="row" style="vertical-align:top">{@code <logger>.useParentHandlers}</th>
19451945
* <td>
19461946
* <ul>
19471947
* <li>If either the resulting or the old value for the useParentHandlers
@@ -1955,7 +1955,7 @@ public void updateConfiguration(Function<String, BiFunction<String,String,String
19551955
* </td>
19561956
* </tr>
19571957
* <tr>
1958-
* <th scope="row" valign="top">{@code <logger>.handlers}</th>
1958+
* <th scope="row" style="vertical-align:top">{@code <logger>.handlers}</th>
19591959
* <td>
19601960
* <ul>
19611961
* <li>If the resulting configuration defines a list of handlers for a
@@ -1979,7 +1979,7 @@ public void updateConfiguration(Function<String, BiFunction<String,String,String
19791979
* </td>
19801980
* </tr>
19811981
* <tr>
1982-
* <th scope="row" valign="top">{@code <handler-name>.*}</th>
1982+
* <th scope="row" style="vertical-align:top">{@code <handler-name>.*}</th>
19831983
* <td>
19841984
* <ul>
19851985
* <li>Properties configured/changed on handler classes will only affect
@@ -1991,7 +1991,7 @@ public void updateConfiguration(Function<String, BiFunction<String,String,String
19911991
* </td>
19921992
* </tr>
19931993
* <tr>
1994-
* <th scope="row" valign="top">{@code config} and any other property</th>
1994+
* <th scope="row" style="vertical-align:top">{@code config} and any other property</th>
19951995
* <td>
19961996
* <ul>
19971997
* <li>The resulting value for these property will be stored in the

0 commit comments

Comments
 (0)