Skip to content

Commit

Permalink
Code style: remove a few whitespaces from FontDecoration test
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosame committed Jul 11, 2024
1 parent cf0fac2 commit a0b9e42
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void paint(Graphics2D g) {
ICC_Profile profile = ICC_Profile.getInstance(is);
ICC_ColorSpace cs = new ICC_ColorSpace(profile);
float[] comps = { 0.33f, 0.34f, 0.43f };
stColor = new Color(cs, comps , 1f);
stColor = new Color(cs, comps, 1f);
} catch (IOException e) {
stColor = new Color(0x666699);
}
Expand All @@ -99,7 +99,7 @@ public void paint(Graphics2D g) {
ICC_Profile profile = ICC_Profile.getInstance(is);
ICC_ColorSpace cs = new ICC_ColorSpace(profile);
float[] comps = { .55f, .6f, .34f };
lColor = new Color(cs, comps , 1f);
lColor = new Color(cs, comps, 1f);
} catch (IOException e) {
lColor = Color.magenta;
}
Expand All @@ -117,7 +117,7 @@ public void paint(Graphics2D g) {
ICC_Profile profile = ICC_Profile.getInstance(is);
ICC_ColorSpace cs = new ICC_ColorSpace(profile);
float[] comps = { .36f, .35f, .33f };
ulColor = new Color(cs, comps , 1f);
ulColor = new Color(cs, comps, 1f);
} catch (IOException e) {
ulColor = Color.black;
}
Expand Down

0 comments on commit a0b9e42

Please sign in to comment.