public void updatePyPICache(@NotNull PyPackageService service) throws IOException { service.LAST_TIME_CHECKED = System.currentTimeMillis(); service.PY_PACKAGES.clear(); if (service.PYPI_REMOVED) return; parsePyPIList(parsePyPIListFromWeb(PYPI_LIST_URL, true), service); }
public void updatePyPICache(final PyPackageService service) throws IOException { parsePyPIList(getPyPIListFromWeb(), service); }