You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by li...@apache.org on 2010/07/24 06:12:03 UTC

svn commit: r978793 - /shindig/trunk/java/common/src/main/java/org/apache/shindig/common/PropertiesModule.java

Author: lindner
Date: Sat Jul 24 04:12:03 2010
New Revision: 978793

URL: http://svn.apache.org/viewvc?rev=978793&view=rev
Log:
fix broken build

Modified:
    shindig/trunk/java/common/src/main/java/org/apache/shindig/common/PropertiesModule.java

Modified: shindig/trunk/java/common/src/main/java/org/apache/shindig/common/PropertiesModule.java
URL: http://svn.apache.org/viewvc/shindig/trunk/java/common/src/main/java/org/apache/shindig/common/PropertiesModule.java?rev=978793&r1=978792&r2=978793&view=diff
==============================================================================
--- shindig/trunk/java/common/src/main/java/org/apache/shindig/common/PropertiesModule.java (original)
+++ shindig/trunk/java/common/src/main/java/org/apache/shindig/common/PropertiesModule.java Sat Jul 24 04:12:03 2010
@@ -81,8 +81,8 @@ public class PropertiesModule extends Ab
 
   protected String getServerHostname() {
     return System.getProperty("shindig.host") != null ? System.getProperty("shindig.host") :
-    return System.getProperty("jetty.host") != null ? System.getProperty("jetty.host") :
-      "localhost";
+           System.getProperty("jetty.host") != null ? System.getProperty("jetty.host") :
+           "localhost";
   }
 
   protected static String getDefaultPropertiesPath() {