(Graphics graphics)
| 618 | } |
| 619 | |
| 620 | static public Graphics2D setupGraphics2D(Graphics graphics) { |
| 621 | Graphics2D g = (Graphics2D) graphics; |
| 622 | if (PreferencesData.getBoolean("editor.antialias")) { |
| 623 | g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, |
| 624 | RenderingHints.VALUE_TEXT_ANTIALIAS_ON); |
| 625 | } |
| 626 | return g; |
| 627 | } |
| 628 | |
| 629 | /** |
| 630 | * Loads the supplied {@link PreferencesMap} from the specified resource, |
no test coverage detected