Changeset 12614


Ignore:
Timestamp:
04/15/10 14:52:28 (13 years ago)
Author:
Mark Evenson
Message:

Remove non-working URI encoding.

This method was stripping out fragments, and since our URI encoding
strategy is going to take place in convenience functions, we remove
this.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/Pathname.java

    r12612 r12614  
    709709        }
    710710        namestring = sb.toString();
    711         if (isURL()) {
    712             namestring = Utilities.uriEncode(namestring);
    713         }
     711        // XXX Decide when this is necessary
     712        // if (isURL()) {
     713        //     namestring = Utilities.uriEncode(namestring);
     714        // }
    714715        return namestring;
    715716    }
Note: See TracChangeset for help on using the changeset viewer.