Author: britter
Date: Fri Jan 10 14:35:24 2014
New Revision: 1557135

URL: http://svn.apache.org/r1557135
Log:
Replace tabs with white spaces

Modified:
    
commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/ExecuteException.java

Modified: 
commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/ExecuteException.java
URL: 
http://svn.apache.org/viewvc/commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/ExecuteException.java?rev=1557135&r1=1557134&r2=1557135&view=diff
==============================================================================
--- 
commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/ExecuteException.java
 (original)
+++ 
commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/ExecuteException.java
 Fri Jan 10 14:35:24 2014
@@ -32,15 +32,15 @@ public class ExecuteException extends IO
      */
     private static final long serialVersionUID = 3256443620654331699L;
 
-       /**
-        * The underlying cause of this exception.
-        */
-       private final Throwable cause;
+    /**
+     * The underlying cause of this exception.
+     */
+    private final Throwable cause;
 
-       /**
-        * The exit value returned by the failed process
-        */
-       private final int exitValue;
+    /**
+     * The exit value returned by the failed process
+     */
+    private final int exitValue;
     
     /**
      * Construct a new exception with the specified detail message.
@@ -82,6 +82,6 @@ public class ExecuteException extends IO
      * @return The exit value
      */
     public int getExitValue() {
-       return exitValue;
+        return exitValue;
     }
 }


Reply via email to