Improve handling of critical sections

Use LockableOntModel, etc., instead of Critical.
This commit is contained in:
Jim Blake 2014-11-09 16:05:06 -05:00
parent f6f12efe6d
commit 72b86bd4d5
9 changed files with 275 additions and 94 deletions

View file

@ -101,7 +101,7 @@ public class ConfigurationBeanLoaderTest extends AbstractTestClass {
expectException(NullPointerException.class, "model may not be null");
@SuppressWarnings("unused")
Object unused = new ConfigurationBeanLoader(null);
Object unused = new ConfigurationBeanLoader((Model) null);
}
// ----------------------------------------------------------------------