(Graphics g)
| 196 | /// |
| 197 | /// - `g`: Graphics object to paint on. |
| 198 | public void paintTileLoading(Graphics g) { |
| 199 | if (tileLoadingImage == null) { |
| 200 | paintLoadingText(g); |
| 201 | } else { |
| 202 | paintLoadingImage(g); |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | private void paintLoadingText(Graphics g) { |
| 207 | g.setColor(0x707070); |
no test coverage detected