Revision: 17765
          http://sourceforge.net/p/gate/code/17765
Author:   markagreenwood
Date:     2014-04-03 09:54:56 +0000 (Thu, 03 Apr 2014)
Log Message:
-----------
possibly fixed the groovy related deadlocking; i've got all my fingers and toes 
crossed in anticipation. feel free to cross yours too, you never know what will 
actually help. it's certain that if this doesn't then I'm going to look into 
some form of animal sacrifice :)

Modified Paths:
--------------
    gate/trunk/src/main/gate/util/GateClassLoader.java

Modified: gate/trunk/src/main/gate/util/GateClassLoader.java
===================================================================
--- gate/trunk/src/main/gate/util/GateClassLoader.java  2014-04-03 01:21:52 UTC 
(rev 17764)
+++ gate/trunk/src/main/gate/util/GateClassLoader.java  2014-04-03 09:54:56 UTC 
(rev 17765)
@@ -123,8 +123,10 @@
     }
 
     for(GateClassLoader cl : children) {
-      result = cl.getResource(name);
-      if(result != null) return result;
+      if (!cl.isIsolated()) {
+        result = cl.getResource(name);
+        if(result != null) return result;
+      }      
     }
 
     return null;

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to