- Timestamp:
- 2016-04-28T23:05:27+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java
r10158 r10163 202 202 final String userHomeDir = System.getProperty("user.home"); 203 203 final String userHomeDirAlt = Main.isPlatformWindows() ? "%UserProfile%" : "${HOME}"; 204 final String userName = System.getProperty("user.name"); 205 final String userNameAlt = "<user.name>"; 204 206 205 207 String val = param; … … 211 213 val = paramReplace(val, userCacheDir, userCacheDirAlt); 212 214 val = paramReplace(val, userHomeDir, userHomeDirAlt); 215 val = paramReplace(val, userName, userNameAlt); 213 216 return val; 214 217 }
Note:
See TracChangeset
for help on using the changeset viewer.