Revision: 19640
          http://sourceforge.net/p/gate/code/19640
Author:   markagreenwood
Date:     2016-10-06 06:23:40 +0000 (Thu, 06 Oct 2016)
Log Message:
-----------
fixed a remaining issue stopping us from using URIs internally

Modified Paths:
--------------
    gate/branches/sawdust2/gate-core/src/main/java/gate/Plugin.java

Modified: gate/branches/sawdust2/gate-core/src/main/java/gate/Plugin.java
===================================================================
--- gate/branches/sawdust2/gate-core/src/main/java/gate/Plugin.java     
2016-10-06 01:23:27 UTC (rev 19639)
+++ gate/branches/sawdust2/gate-core/src/main/java/gate/Plugin.java     
2016-10-06 06:23:40 UTC (rev 19640)
@@ -393,7 +393,7 @@
 
       // url.getPath() works for jar URLs; url.toURI().getPath() doesn't
       // because jars aren't considered "hierarchical"
-      name = baseURL.getPath();
+      name = getBaseURL().getPath();
       if(name.endsWith("/")) {
         name = name.substring(0, name.length() - 1);
       }

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


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
GATE-cvs mailing list
GATE-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to