* In some variations of the {@code rotate} methods in the
* {@code AffineTransform} class, a double-precision argument
diff -r 6526e0a7dd99 -r 65030bbf5ac1 src/java.desktop/share/classes/javax/accessibility/package-info.java
--- a/src/java.desktop/share/classes/javax/accessibility/package-info.java Wed Mar 27 12:24:28 2019 +0530
+++ b/src/java.desktop/share/classes/javax/accessibility/package-info.java Wed Mar 27 12:27:56 2019 +0530
@@ -37,8 +37,8 @@
* interfaces, and 6 Java programming language classes. These are described
* below.
*
- *
diff -r 6526e0a7dd99 -r 65030bbf5ac1 src/java.desktop/share/classes/javax/swing/Action.java
--- a/src/java.desktop/share/classes/javax/swing/Action.java Wed Mar 27 12:24:28 2019 +0530
+++ b/src/java.desktop/share/classes/javax/swing/Action.java Wed Mar 27 12:27:56 2019 +0530
@@ -69,7 +69,7 @@
* are desired, and use simple ActionListener
s elsewhere.
*
*
- * Swing Components Supporting Action
+ * Swing Components Supporting Action
*
* Many of Swing's components have an Action
property. When
* an Action
is set on a component, the following things
diff -r 6526e0a7dd99 -r 65030bbf5ac1 src/java.desktop/share/classes/javax/swing/GroupLayout.java
--- a/src/java.desktop/share/classes/javax/swing/GroupLayout.java Wed Mar 27 12:24:28 2019 +0530
+++ b/src/java.desktop/share/classes/javax/swing/GroupLayout.java Wed Mar 27 12:27:56 2019 +0530
@@ -2377,7 +2377,7 @@
* {@code ParallelGroup} aligns its children in
* four possible ways: along the baseline, centered, anchored to the
* leading edge, or anchored to the trailing edge.
- *
Baseline
+ * Baseline
* A {@code ParallelGroup} that aligns its children along the
* baseline must first decide where the baseline is
* anchored. The baseline can either be anchored to the top, or
@@ -2427,7 +2427,7 @@
* ways: centered, anchored to the leading edge, or anchored to the
* trailing edge.
*
- * Non-baseline {@code ParallelGroup}
+ * Non-baseline {@code ParallelGroup}
* {@code ParallelGroup}s created with an alignment other than
* {@code BASELINE} align elements that are smaller than the size
* of the group in one of three ways: centered, anchored to the
diff -r 6526e0a7dd99 -r 65030bbf5ac1 src/java.desktop/share/classes/javax/swing/JTable.java
--- a/src/java.desktop/share/classes/javax/swing/JTable.java Wed Mar 27 12:24:28 2019 +0530
+++ b/src/java.desktop/share/classes/javax/swing/JTable.java Wed Mar 27 12:27:56 2019 +0530
@@ -3050,9 +3050,9 @@
* of elements with a size, preferred size, maximum size and minimum size
* to have its elements manipulated by the algorithm.
*
- * Distributing the delta
- *
- * Overview
+ * Distributing the delta
+ *
+ * Overview
*
* Call "DELTA" the difference between the target size and the
* sum of the preferred sizes of the elements in r. The individual
@@ -3061,7 +3061,7 @@
* how far each preferred size is from its limiting bound (minimum or
* maximum).
*
- *
Definition
+ * Definition
*
* Call the individual constraints min[i], max[i], and pref[i].
*
@@ -3093,7 +3093,7 @@
* k, towards the total minimum or maximum and that percentage guarantees
* accommodation of the required space, DELTA.
*
- *
Details
+ * Details
*
* Naive evaluation of the formulae presented here would be subject to
* the aggregated rounding errors caused by doing this operation in finite
@@ -3104,7 +3104,7 @@
* targetSize
, and does so by spreading the rounding
* errors evenly over the given elements.
*
- *
When the MAX and MIN bounds are hit
+ * When the MAX and MIN bounds are hit
*
* When targetSize
is outside the [MIN, MAX] range,
* the algorithm sets all sizes to their appropriate limiting value
diff -r 6526e0a7dd99 -r 65030bbf5ac1 src/java.desktop/share/classes/javax/swing/SizeSequence.java
--- a/src/java.desktop/share/classes/javax/swing/SizeSequence.java Wed Mar 27 12:24:28 2019 +0530
+++ b/src/java.desktop/share/classes/javax/swing/SizeSequence.java Wed Mar 27 12:27:56 2019 +0530
@@ -76,7 +76,7 @@
* could be just as valid.
*
*
- *
Implementation Notes
+ * Implementation Notes
*
* Normally when storing the size and position of entries,
* one would choose between
diff -r 6526e0a7dd99 -r 65030bbf5ac1 src/java.desktop/share/classes/javax/swing/SpringLayout.java
--- a/src/java.desktop/share/classes/javax/swing/SpringLayout.java Wed Mar 27 12:24:28 2019 +0530
+++ b/src/java.desktop/share/classes/javax/swing/SpringLayout.java Wed Mar 27 12:27:56 2019 +0530
@@ -128,9 +128,9 @@
* the edges of components from different containers (either internal or
* external) is undefined.
*
- *
+ *
* SpringLayout vs. Other Layout Managers
- *
+ *
*
*
*
diff -r 6526e0a7dd99 -r 65030bbf5ac1 src/java.desktop/share/classes/javax/swing/UIManager.java
--- a/src/java.desktop/share/classes/javax/swing/UIManager.java Wed Mar 27 12:24:28 2019 +0530
+++ b/src/java.desktop/share/classes/javax/swing/UIManager.java Wed Mar 27 12:27:56 2019 +0530
@@ -70,7 +70,7 @@
* are notified when the look and feel changes, look and feel defaults, and
* convenience methods for obtaining various default values.
*
- * Specifying the look and feel
+ * Specifying the look and feel
*
* The look and feel can be specified in two distinct ways: by
* specifying the fully qualified name of the class for the look and
@@ -94,7 +94,7 @@
* unspecified. It is very possible to receive unexpected exceptions,
* painting problems, or worse.
*
- * Default look and feel
+ * Default look and feel
*
* The class used for the default look and feel is chosen in the following
* manner:
@@ -114,7 +114,7 @@
* - Otherwise use the cross platform look and feel.
*
*
- *