private void loadMGraphs() {
File mGraphsDir = new File(new File(dataPathString), "mgraph");
if (mGraphsDir.exists()) {
for (String mGraphDirName : mGraphsDir.list()) {
try {
UriRef uri = new UriRef(URLDecoder.decode(mGraphDirName, "utf-8"));
log.info("loading: "+mGraphDirName);
mGraphMap.put(uri, new LockableMGraphWrapper(getMGraph(new File(mGraphsDir, mGraphDirName))));
} catch (UnsupportedEncodingException ex) {
throw new RuntimeException("utf-8 not supported", ex);
} catch (Exception e) {