rename "resource" URL protocol to "avian_vm_resource"

This fixes a problem with JOSM, which attaches its own meaning to the
"resource" protocol.  The new name is less likely to cause such
conflicts.
This commit is contained in:
Joel Dice
2012-08-11 19:01:32 -06:00
parent 373a92d4d6
commit b325221579
4 changed files with 5 additions and 5 deletions

View File

@ -83,8 +83,8 @@ public final class URL {
{
if ("http".equals(protocol) || "https".equals(protocol)) {
return new avian.http.Handler();
} else if ("resource".equals(protocol)) {
return new avian.resource.Handler();
} else if ("avian_vm_resource".equals(protocol)) {
return new avian.avian_vm_resource.Handler();
} else if ("file".equals(protocol)) {
return new avian.file.Handler();
} else if ("jar".equals(protocol)) {