mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-18 18:14:38 +02:00
8190228: Remove redundant modifiers in java.desktop module
Reviewed-by: serb, prr
This commit is contained in:
parent
48508135fe
commit
70329e0640
28 changed files with 65 additions and 65 deletions
|
@ -1354,7 +1354,7 @@ public class AffineTransform implements Cloneable, java.io.Serializable {
|
|||
/* SH | SC => */ APPLY_SHEAR | APPLY_SCALE,
|
||||
/* SH | SC | TR => */ APPLY_SHEAR | APPLY_SCALE | APPLY_TRANSLATE,
|
||||
};
|
||||
private final void rotate90() {
|
||||
private void rotate90() {
|
||||
double M0 = m00;
|
||||
m00 = m01;
|
||||
m01 = -M0;
|
||||
|
@ -1370,7 +1370,7 @@ public class AffineTransform implements Cloneable, java.io.Serializable {
|
|||
this.state = state;
|
||||
type = TYPE_UNKNOWN;
|
||||
}
|
||||
private final void rotate180() {
|
||||
private void rotate180() {
|
||||
m00 = -m00;
|
||||
m11 = -m11;
|
||||
int state = this.state;
|
||||
|
@ -1390,7 +1390,7 @@ public class AffineTransform implements Cloneable, java.io.Serializable {
|
|||
}
|
||||
type = TYPE_UNKNOWN;
|
||||
}
|
||||
private final void rotate270() {
|
||||
private void rotate270() {
|
||||
double M0 = m00;
|
||||
m00 = -m01;
|
||||
m01 = M0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue