Skip to content

Commit

Permalink
First attempt at fixing failures which do not happen locally, but only
Browse files Browse the repository at this point in the history
on bamboo
  • Loading branch information
dkayiwa committed Sep 2, 2013
1 parent 5a15636 commit b7c6b44
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion api/src/main/java/org/openmrs/module/ModuleClassLoader.java
Expand Up @@ -423,7 +423,10 @@ protected Class<?> loadClass(final String name, final boolean resolve) throws Cl

result = classLoader.getClassIfLoaded(name);
if (result != null) {
return result;
//TODO This was added as a fix for TRUNK-4053
//Still wondering why it makes bamboo fail, but not local setups for various devs
//So trying to comment out to see if it fixes bamboo
//return result;
}
}

Expand Down

0 comments on commit b7c6b44

Please sign in to comment.