Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register

Changeset 5265

Show
Ignore:
Timestamp:
08/12/08 21:15:59 (3 months ago)
Author:
bwolfe
Message:

Changing method from protected to public to allow modules to change how classloading works - #894
Author: r0bby

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs/trunk/src/api/org/openmrs/module/ModuleClassLoader.java

    r4158 r5265  
    349349         * @param value boolean true/false whether or not to look at the parent classloader last 
    350350         */ 
    351         protected void setProbeParentLoaderLast(final boolean value) { 
     351        public void setProbeParentLoaderLast(final boolean value) { 
    352352                probeParentLoaderLast = value; 
    353353        }