Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8255214: Unsupported 'valign' attribute for 'th' tag used in j.u.l.LogManager #1064

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/java.logging/share/classes/java/util/logging/LogManager.java
Expand Up @@ -1920,7 +1920,7 @@ public void updateConfiguration(Function<String, BiFunction<String,String,String
* </thead>
* <tbody>
* <tr>
* <th scope="row" valign="top">{@code <logger>.level}</th>
* <th scope="row" style="vertical-align:top">{@code <logger>.level}</th>
* <td>
* <ul>
* <li>If the resulting configuration defines a level for a logger and
Expand All @@ -1941,7 +1941,7 @@ public void updateConfiguration(Function<String, BiFunction<String,String,String
* </ul>
* </td>
* <tr>
* <th scope="row" valign="top">{@code <logger>.useParentHandlers}</th>
* <th scope="row" style="vertical-align:top">{@code <logger>.useParentHandlers}</th>
* <td>
* <ul>
* <li>If either the resulting or the old value for the useParentHandlers
Expand All @@ -1955,7 +1955,7 @@ public void updateConfiguration(Function<String, BiFunction<String,String,String
* </td>
* </tr>
* <tr>
* <th scope="row" valign="top">{@code <logger>.handlers}</th>
* <th scope="row" style="vertical-align:top">{@code <logger>.handlers}</th>
* <td>
* <ul>
* <li>If the resulting configuration defines a list of handlers for a
Expand All @@ -1979,7 +1979,7 @@ public void updateConfiguration(Function<String, BiFunction<String,String,String
* </td>
* </tr>
* <tr>
* <th scope="row" valign="top">{@code <handler-name>.*}</th>
* <th scope="row" style="vertical-align:top">{@code <handler-name>.*}</th>
* <td>
* <ul>
* <li>Properties configured/changed on handler classes will only affect
Expand All @@ -1991,7 +1991,7 @@ public void updateConfiguration(Function<String, BiFunction<String,String,String
* </td>
* </tr>
* <tr>
* <th scope="row" valign="top">{@code config} and any other property</th>
* <th scope="row" style="vertical-align:top">{@code config} and any other property</th>
* <td>
* <ul>
* <li>The resulting value for these property will be stored in the
Expand Down