()
| 57 | } |
| 58 | |
| 59 | private DbReader getReader() { |
| 60 | String confId = ConfigResource.DEFAULT; |
| 61 | synchronized (readers) { |
| 62 | if (!readers.containsKey(confId)) { |
| 63 | readers.put(confId, new DbReader(configManager.get(confId), null)); |
| 64 | } |
| 65 | return readers.get(confId); |
| 66 | } |
| 67 | } |
| 68 | } |