()
| 8 | |
| 9 | //Factory |
| 10 | public static GraphicsLCD getInstance() { |
| 11 | |
| 12 | if(EV3DevDistros.getInstance().getDistro().equals(EV3DevDistro.STRETCH)) { |
| 13 | return LCDStretch.getInstance(); |
| 14 | }else { |
| 15 | return LCDJessie.getInstance(); |
| 16 | } |
| 17 | |
| 18 | } |
| 19 | |
| 20 | } |
nothing calls this directly
no test coverage detected