Changeset 12697
- Timestamp:
- 05/17/10 18:33:12 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.20.x/abcl/src/org/armedbear/lisp/Pathname.java
r12667 r12697 2103 2103 Debug.trace("Failed to get InputStream for " 2104 2104 + "'" + getNamestring() + "'"); 2105 2105 // XXX should this be fatal? 2106 2106 Debug.assertTrue(false); 2107 2107 } … … 2109 2109 result = jarFile.getInputStream(entry); 2110 2110 } catch (IOException e) { 2111 Debug. trace("Failed to get InputStream from "2111 Debug.warn("Failed to get InputStream from " 2112 2112 + "'" + getNamestring() + "'" 2113 2113 + ": " + e); … … 2119 2119 result = url.openStream(); 2120 2120 } catch (IOException e) { 2121 Debug. trace("Failed to get InputStream from "2121 Debug.warn("Failed to get InputStream from " 2122 2122 + "'" + getNamestring() + "'" 2123 2123 + ": " + e); … … 2128 2128 result = new FileInputStream(file); 2129 2129 } catch (IOException e) { 2130 Debug. trace("Failed to get InputStream from "2130 Debug.warn("Failed to get InputStream from " 2131 2131 + "'" + getNamestring() + "'" 2132 2132 + ": " + e);
Note: See TracChangeset
for help on using the changeset viewer.