Changeset 12689
- Timestamp:
- 05/16/10 09:09:43 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/Pathname.java
r12667 r12689 356 356 } 357 357 Debug.assertTrue(scheme != null); 358 String authority = url.getAuthority(); 359 Debug.assertTrue(authority != null); 360 361 host = NIL; 362 host = host.push(SCHEME); 363 host = host.push(new SimpleString(scheme)); 364 host = host.push(AUTHORITY); 365 host = host.push(new SimpleString(authority)); 366 367 device = NIL; 368 369 // URI encode necessary characters 358 // String authority = url.getAuthority(); 370 359 URI uri = null; 371 360 try { … … 376 365 + " because: " + e)); 377 366 } 378 367 String authority = uri.getAuthority(); 368 Debug.assertTrue(authority != null); 369 370 host = NIL; 371 host = host.push(SCHEME); 372 host = host.push(new SimpleString(scheme)); 373 host = host.push(AUTHORITY); 374 host = host.push(new SimpleString(authority)); 375 376 device = NIL; 377 378 // URI encode necessary characters 379 379 String path = uri.getRawPath(); 380 380 if (path == null) {
Note: See TracChangeset
for help on using the changeset viewer.