- Timestamp:
- Jan 27, 2011, 9:29:52 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/src/share/classes/com/sun/tools/example/debug/tty/SourceMapper.java
r2 r251 52 52 //the source path. (Bug ID 4186582) 53 53 if ( ! (element.endsWith(".jar") || 54 element.endsWith(".zip"))) { 54 element.endsWith(".zip") || 55 element.isEmpty())) { 55 56 dirList.add(element); 56 57 } … … 76 77 //the source path. (Bug ID 4186582) 77 78 if ( ! (s.endsWith(".jar") || 78 s.endsWith(".zip"))) { 79 s.endsWith(".zip") || 80 s.isEmpty())) { 79 81 dirList.add(s); 80 82 }
Note:
See TracChangeset
for help on using the changeset viewer.