File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
opengrok-indexer/src/main/java/org/opengrok/indexer/history Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -200,19 +200,17 @@ private boolean useAnnotationCache() {
200
200
* Get a string with information about the history cache.
201
201
*
202
202
* @return a free form text string describing the history cache instance
203
- * @throws HistoryException if an error occurred while getting the info
204
203
*/
205
- public String getHistoryCacheInfo () throws HistoryException {
204
+ public String getHistoryCacheInfo () {
206
205
return historyCache == null ? "No history cache" : historyCache .getInfo ();
207
206
}
208
207
209
208
/**
210
209
* Get a string with information about the annotation cache.
211
210
*
212
211
* @return a free form text string describing the history cache instance
213
- * @throws HistoryException if an error occurred while getting the info
214
212
*/
215
- public String getAnnotationCacheInfo () throws HistoryException {
213
+ public String getAnnotationCacheInfo () {
216
214
return annotationCache == null ? "No annotation cache" : annotationCache .getInfo ();
217
215
}
218
216
You can’t perform that action at this time.
0 commit comments