| 1 | package com.jakewharton.u2020; |
| 2 | |
| 3 | final class Modules { |
| 4 | static Object[] list(U2020App app) { |
| 5 | return new Object[] { |
| 6 | new U2020Module(app), |
| 7 | new DebugU2020Module() |
| 8 | }; |
| 9 | } |
| 10 | |
| 11 | private Modules() { |
| 12 | // No instances. |
| 13 | } |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected