(Graphics g)
| 463 | } |
| 464 | |
| 465 | public void paintComponent(Graphics g) |
| 466 | { |
| 467 | g.setColor(Constants.BACKGROUND); |
| 468 | g.fillRect(0, 0, Constants.WIDTH, Constants.HEIGHT); |
| 469 | |
| 470 | paintInvalidMessage(g); |
| 471 | } |
| 472 | |
| 473 | private void paintInvalidMessage(Graphics g) |
| 474 | { |
nothing calls this directly
no test coverage detected