Removed desktop path detection. Was too ugly and unreliable.
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / file / CommonPathResolver.java
1 /*
2  * Svjatoslav Commons - shared library of common functionality. Author: Svjatoslav Agejenko.
3  * This project is released under Creative Commons Zero (CC0) license.
4  */
5 package eu.svjatoslav.commons.file;
6
7 import java.io.File;
8
9 public class CommonPathResolver {
10
11     public static File getHomeDirectory() {
12         return new File(System.getProperty("user.home"));
13     }
14
15 }