Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
05/21/08 20:34:11 (8 months ago)
Author:
bwolfe
Message:

api-refactoring: Updating javadoc comments

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs/branches/api_refactoring/src/api/org/openmrs/api/impl/ConceptServiceImpl.java

    r4290 r4312  
    984984         */ 
    985985        public void checkIfLocked() throws ConceptsLockedException { 
    986                 String locked = Context.getAdministrationService().getGlobalProperty(OpenmrsConstants.GP_CONCEPTS_LOCKED, "false"); 
     986                String locked = Context.getAdministrationService().getGlobalProperty(OpenmrsConstants.GLOBAL_PROPERTY_CONCEPTS_LOCKED, "false"); 
    987987                if (locked.toLowerCase().equals("true")) 
    988988                        throw new ConceptsLockedException();