public NativeStoreSailGraph(final String directory, final String tripleIndices) {
super(createNativeStore(new File(directory), tripleIndices));
}
private static Sail createNativeStore(final File directory, final String tripleIndices) {
Sail s = null == tripleIndices ? new NativeStore(directory) : new NativeStore(directory, tripleIndices);
/*try {
s.initialize();
} catch (SailException e) {
// FIXME: RuntimeExceptions are the root of all evil
throw new RuntimeException(e);