Revert "Add support for LTTNG_UST_HOME"
[lttng-ust.git] / src / lib / lttng-ust-java-agent / java / lttng-ust-agent-common / org / lttng / ust / agent / client / LttngTcpSessiondClient.java
index 2c44a0df98f5455c3eb15cc7c2f5a3bc05e85f1a..cb84087af6a42fc81aa434dd7ec1018098c3e567 100644 (file)
@@ -197,29 +197,15 @@ public class LttngTcpSessiondClient implements Runnable {
 
        private static String getHomePath() {
                /*
-                * The environment variable LTTNG_UST_HOME overrides LTTNG_HOME
-                * if present.
                 * The environment variable LTTNG_HOME overrides HOME if
                 * defined.
                 */
-               String lttngUstHomePath = System.getenv("LTTNG_UST_HOME");
-               String lttngHomePath = System.getenv("LTTNG_HOME");
-
-               if (lttngUstHomePath != null) {
-                       /*
-                        * LTTNG_UST_HOME has priority over LTTNG_HOME and user
-                        * home directory.
-                        */
-                       return lttngUstHomePath;
-               }
+               String homePath = System.getenv("LTTNG_HOME");
 
-               if (lttngHomePath != null) {
-                       /* LTTNG_HOME has priority over user home directory. */
-                       return lttngHomePath;
+               if (homePath == null) {
+                       homePath = System.getProperty("user.home");
                }
-
-               /* Default to the user home directory. */
-               return System.getProperty("user.home");
+               return homePath;
        }
 
        /**
This page took 0.023168 seconds and 4 git commands to generate.