()
| 140 | private static final Logger LOGGER = LogManager.getLogger(API.class); |
| 141 | |
| 142 | private static synchronized API newInstance() { |
| 143 | if (api == null) { |
| 144 | api = new API(); |
| 145 | } |
| 146 | return api; |
| 147 | } |
| 148 | |
| 149 | public static API getInstance() { |
| 150 | if (api == null) { |
no outgoing calls
no test coverage detected