293031323334353637
private FileCache cache; public FileCache provide(Settings settings) { if (cache == null) { String home = settings.getString("sonar.userHome"); cache = new FileCacheBuilder().setLog(new Slf4jLog(FileCache.class)).setUserHome(home).build(); } return cache; }