You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2008/06/03 11:51:24 UTC

svn commit: r662723 - /geronimo/gshell/trunk/gshell-core/src/main/java/org/apache/geronimo/gshell/DefaultShellInfo.java

Author: jdillon
Date: Tue Jun  3 02:51:24 2008
New Revision: 662723

URL: http://svn.apache.org/viewvc?rev=662723&view=rev
Log:
Fixed up

Modified:
    geronimo/gshell/trunk/gshell-core/src/main/java/org/apache/geronimo/gshell/DefaultShellInfo.java

Modified: geronimo/gshell/trunk/gshell-core/src/main/java/org/apache/geronimo/gshell/DefaultShellInfo.java
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-core/src/main/java/org/apache/geronimo/gshell/DefaultShellInfo.java?rev=662723&r1=662722&r2=662723&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-core/src/main/java/org/apache/geronimo/gshell/DefaultShellInfo.java (original)
+++ geronimo/gshell/trunk/gshell-core/src/main/java/org/apache/geronimo/gshell/DefaultShellInfo.java Tue Jun  3 02:51:24 2008
@@ -82,20 +82,7 @@
     }
     
     private File detectHomeDir() throws InitializationException {
-        //
-        // FIXME:
-        //
-
-        String homePath = null; // branding.getProperty(Branding.HOME);
-
-        if (homePath == null) {
-            //
-            // FIXME: For now just use the user's home ?  We may actually want to try and figure this our harder (like
-            //        how Launcher does...
-            //
-
-            homePath = System.getProperty("user.home");
-        }
+        String homePath = System.getProperty("user.home");
 
         // And now lets resolve this sucker
         File dir;