svn commit: r757045 - in /ofbiz/trunk/framework/start/src/org/ofbiz/base/start: Classpath.java Start.java StartupException.java StartupLoader.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r757045 - in /ofbiz/trunk/framework/start/src/org/ofbiz/base/start: Classpath.java Start.java StartupException.java StartupLoader.java

doogie-3
Author: doogie
Date: Sat Mar 21 22:45:20 2009
New Revision: 757045

URL: http://svn.apache.org/viewvc?rev=757045&view=rev
Log:
Fix purely empty whitespace lines, and remove trailing whitespace.

Modified:
    ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Classpath.java
    ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java
    ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java
    ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupLoader.java

Modified: ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Classpath.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Classpath.java?rev=757045&r1=757044&r2=757045&view=diff
==============================================================================
--- ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Classpath.java (original)
+++ ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Classpath.java Sat Mar 21 22:45:20 2009
@@ -6,9 +6,9 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- *
+ *
  * http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@@ -76,7 +76,7 @@
         return added;
     }
 
-    
+
     private void appendPath(StringBuilder cp, String path) {
         if (path.indexOf(' ') >= 0) {
             cp.append('\"');
@@ -87,8 +87,8 @@
             cp.append(path);
         }
      }
-    
-    
+
+
     public String toString() {
         StringBuilder cp = new StringBuilder(1024);
         int cnt = _elements.size();

Modified: ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java?rev=757045&r1=757044&r2=757045&view=diff
==============================================================================
--- ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java (original)
+++ ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java Sat Mar 21 22:45:20 2009
@@ -608,7 +608,7 @@
 
             // set the property to tell Jetty to use 2.4 SessionListeners
             System.setProperty("org.mortbay.jetty.servlet.AbstractSessionManager.24SessionDestroyed", "true");
-            
+
             // set the default locale
             String localeString = props.getProperty("ofbiz.locale.default");
             if (localeString != null && localeString.length() > 0) {
@@ -631,7 +631,7 @@
             if (tzString != null && tzString.length() > 0) {
                 TimeZone.setDefault(TimeZone.getTimeZone(tzString));
             }
-            
+
             // loader classes
             loaders = new ArrayList<String>();
             int currentPosition = 1;

Modified: ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java?rev=757045&r1=757044&r2=757045&view=diff
==============================================================================
--- ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java (original)
+++ ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java Sat Mar 21 22:45:20 2009
@@ -6,9 +6,9 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- *
+ *
  * http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@@ -26,7 +26,7 @@
  *
  */
 public class StartupException extends Exception {
-    
+
     Throwable nested = null;
 
     /**

Modified: ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupLoader.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupLoader.java?rev=757045&r1=757044&r2=757045&view=diff
==============================================================================
--- ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupLoader.java (original)
+++ ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupLoader.java Sat Mar 21 22:45:20 2009
@@ -6,9 +6,9 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- *
+ *
  * http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@@ -23,10 +23,10 @@
  *
  */
 public interface StartupLoader {
-    
+
     /**
      * Load a startup class
-     *
+     *
      * @param config Startup config
      * @param args Input arguments
      * @throws StartupException
@@ -41,7 +41,7 @@
 
     /**
      * Stop the container
-     *    
+     *
      * @throws StartupException
      */
     public void unload() throws StartupException;