You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ga...@apache.org on 2008/06/25 06:44:27 UTC

svn commit: r671423 - /geronimo/server/branches/2.1/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/LocalAttributeManager.java

Author: gawor
Date: Tue Jun 24 21:44:27 2008
New Revision: 671423

URL: http://svn.apache.org/viewvc?rev=671423&view=rev
Log:
updated the header to be a bit clearer and more readable

Modified:
    geronimo/server/branches/2.1/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/LocalAttributeManager.java

Modified: geronimo/server/branches/2.1/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/LocalAttributeManager.java
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.1/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/LocalAttributeManager.java?rev=671423&r1=671422&r2=671423&view=diff
==============================================================================
--- geronimo/server/branches/2.1/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/LocalAttributeManager.java (original)
+++ geronimo/server/branches/2.1/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/LocalAttributeManager.java Tue Jun 24 21:44:27 2008
@@ -98,14 +98,14 @@
     private File configSubstitutionsFile;
     private Properties localConfigSubstitutions;
     private String resolvedPropertiesFile;
-    private static final byte[] INSTRUCTION = ("#Put variables and their substitution values in this file: \n"
-            + "#they will be used when processing the corresponding config.xml. \n"
-            + "#Values in this file will be overridden by environment variables and system properties \n"
-            + "#by prefixing the property name with 'org.apache.geronimo.config.substitution.'"
-            + "#For example an entry such as hostName=localhost \n"
-            + "#can be overridden by an environment variable or system property org.apache.geronimo.config.substitution.hostName=foo \n"
-            + "#To run multiple instances of geronimo choose a portOffset such that none of the ports conflict \n"
-            + "#Try PortOffset=10 \n").getBytes();
+    private static final byte[] INSTRUCTION = ("# Put variables and their substitution values in this file. \n"
+            + "# They will be used when processing the corresponding config.xml. \n"
+            + "# Values in this file can be overridden by environment variables and system properties \n"
+            + "# by prefixing the property name with 'org.apache.geronimo.config.substitution.' \n"
+            + "# For example, an entry such as hostName=localhost \n"
+            + "# can be overridden by an environment variable or system property org.apache.geronimo.config.substitution.hostName=foo \n"
+            + "# When running multiple instances of Geronimo choose a PortOffset value such that none of the ports conflict. \n"
+            + "# For example, try PortOffset=10 \n").getBytes();
 
     public LocalAttributeManager(String configFile, String configSubstitutionsFileName, String configSubstitutionsPrefix, boolean readOnly, ServerInfo serverInfo) {
         this.configFile = System.getProperty(CONFIG_FILE_PROPERTY, configFile);