Skip to content

Commit

Permalink
fix #63
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Mar 9, 2016
1 parent c4cbfa3 commit c53c8f4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -321,11 +321,11 @@ public void addCacheData(final String cachePath) {
//CHECKSTYLE:ON
RegExceptionHandler.handleException(ex);
}
caches.put(cachePath, cache);
caches.put(cachePath + "/", cache);
}

@Override
public Object getRawCache(final String cachePath) {
return caches.get(cachePath);
return caches.get(cachePath + "/");
}
}

0 comments on commit c53c8f4

Please sign in to comment.