Changeset 14199 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2018-08-29T01:43:17+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/WindowsShortcut.java
r14091 r14199 147 147 byte fileAtts = link[fileAttsOffset]; 148 148 byte isDirMask = (byte) 0x10; 149 if ((fileAtts & isDirMask) >0) {149 if ((fileAtts & isDirMask) != 0) { 150 150 isDirectory = true; 151 151 } else { … … 157 157 final byte hasShellMask = (byte) 0x01; 158 158 int shellLen = 0; 159 if ((flags & hasShellMask) >0) {159 if ((flags & hasShellMask) != 0) { 160 160 // the plus 2 accounts for the length marker itself 161 161 shellLen = bytesToWord(link, shellOffset) + 2;
Note:
See TracChangeset
for help on using the changeset viewer.