Author: ssievers
Date: Tue May 29 18:19:16 2012
New Revision: 1343892
URL: http://svn.apache.org/viewvc?rev=1343892&view=rev
Log:
Making getContextRoot() protected so that subclasses can access it.
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=1343892&r1=1343891&r2=1343892&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
Tue May 29 18:19:16 2012
@@ -69,7 +69,7 @@ public class PropertiesModule extends Ab
* If not set uses fixed value of "".
* @return an context path as a string.
*/
- private String getContextRoot() {
+ protected String getContextRoot() {
return System.getProperty("shindig.contextroot") != null ?
System.getProperty("shindig.contextroot") : "";
}