Changeset a474bd4
- Timestamp:
- Apr 10, 2018 3:23:41 PM (3 years ago)
- Branches:
- master
- Children:
- 57e21e90
- Parents:
- f00ac6a (diff), 7ae8381 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- router/java/src/net/i2p/router
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
router/java/src/net/i2p/router/Router.java
rf00ac6a ra474bd4 276 276 String isPortableStr = System.getProperty("i2p.dir.portableMode"); 277 277 boolean isPortable = Boolean.parseBoolean(isPortableStr); 278 String userDir = (!isPortable) ? WorkingDir.getWorkingDir(envProps, migrateFiles) : PortableWorkingDir.getWorkingDir(envProps , migrateFiles);278 String userDir = (!isPortable) ? WorkingDir.getWorkingDir(envProps, migrateFiles) : PortableWorkingDir.getWorkingDir(envProps); 279 279 280 280 // Use the router.config file specified in the router.configLocation property -
router/java/src/net/i2p/router/startup/PortableWorkingDir.java
rf00ac6a ra474bd4 24 24 * Just FYI: 25 25 * In the context of a BB: 26 * 26 * 27 27 * On OSX it has to look 3 paths up, but for the other two, only one. 28 28 * … … 47 47 * @author (who to blame) Meeh 48 48 * @version 0.2 49 * @since 0.9.35 49 50 */ 50 51 public class PortableWorkingDir {
Note: See TracChangeset
for help on using the changeset viewer.