Changeset 5867 in josm
- Timestamp:
- 2013-04-15T17:46:08+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/PlatformHookUnixoid.java
r5853 r5867 97 97 if (line != null && !line.isEmpty()) { 98 98 line = line.replaceAll("\"+",""); 99 if(!line.isEmpty()) 99 if(line.startsWith("Linux ")) // e.g. Linux Mint 100 return line; 101 else if(!line.isEmpty()) 100 102 return "Linux " + line; 101 103 }
Note:
See TracChangeset
for help on using the changeset viewer.