Author: mturk
Date: Sun Jun 21 09:45:12 2009
New Revision: 786970

URL: http://svn.apache.org/viewvc?rev=786970&view=rev
Log:
Remove trailing spaces

Modified:
    
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Descriptor32.java
    
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/GroupIterator.java
    
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/OffsetOf.java
    
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/OsType.java
    
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/SystemId.java
    
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/UserIterator.java

Modified: 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Descriptor32.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Descriptor32.java?rev=786970&r1=786969&r2=786970&view=diff
==============================================================================
--- 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Descriptor32.java
 (original)
+++ 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Descriptor32.java
 Sun Jun 21 09:45:12 2009
@@ -43,7 +43,7 @@
 
     public int fd()
     {
-        return IHANDLE;    
+        return IHANDLE;
     }
 
     public boolean isClosed()

Modified: 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/GroupIterator.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/GroupIterator.java?rev=786970&r1=786969&r2=786970&view=diff
==============================================================================
--- 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/GroupIterator.java
 (original)
+++ 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/GroupIterator.java
 Sun Jun 21 09:45:12 2009
@@ -31,7 +31,7 @@
     /**
      * Returns {...@code true} if the iteration has more elements.
      * It returns {...@code true} if the {...@code next} would return
-     * an group rather then throwing and exception. 
+     * an group rather then throwing and exception.
      *
      * @return {...@code true} if the iteration has more elements.
      */

Modified: 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/OffsetOf.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/OffsetOf.java?rev=786970&r1=786969&r2=786970&view=diff
==============================================================================
--- 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/OffsetOf.java
 (original)
+++ 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/OffsetOf.java
 Sun Jun 21 09:45:12 2009
@@ -17,7 +17,7 @@
 package org.apache.commons.runtime;
 import java.lang.annotation.*;
 
-/** 
+/**
  * Annotation that represents the Structure member offsetof.
  * @since Runtime 1.0
  */

Modified: 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/OsType.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/OsType.java?rev=786970&r1=786969&r2=786970&view=diff
==============================================================================
--- 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/OsType.java
 (original)
+++ 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/OsType.java
 Sun Jun 21 09:45:12 2009
@@ -23,20 +23,20 @@
  */
 public enum OsType
 {
-    /** 
+    /**
      * Operating system is Microsoft Windows family
      * operating system..
      * <br/>Defined integer value is: {...@code 0x1000}
      */
     WINDOWS(    0x1000),
 
-    /** 
+    /**
      * Operating system is Microsoft Windows 64.
      * <br/>Defined integer value is: {...@code 0x1001}
      */
     WIN64(      0x1001),
 
-    /** 
+    /**
      * Operating system is Microsoft Windows 64 running 32-bit JVM.
      * <br/>Defined integer value is: {...@code 0x1002}
      */
@@ -48,25 +48,25 @@
      */
     UNIX(       0x2000),
 
-    /** 
+    /**
      * Operating system is Linux.
      * <br/>Defined integer value is: {...@code 0x2001}
      */
     LINUX(      0x2001),
 
-    /** 
+    /**
      * Operating system is Sun Solaris.
      * <br/>Defined integer value is: {...@code 0x2002}
      */
     SOLARIS(    0x2002),
 
-    /** 
+    /**
      * Operating system is Apple Mac OS X.
      * <br/>Defined integer value is: {...@code 0x2004}
      */
     DARWIN(     0x2004),
 
-    /** 
+    /**
      * Operating system is Hewlett Packard HP-UX.
      * <br/>Defined integer value is: {...@code 0x2008}
      */
@@ -79,7 +79,7 @@
         value = v;
     }
 
-    /** 
+    /**
      * Integer representing the value of this Enum.
      */
     public int valueOf()
@@ -87,7 +87,7 @@
         return value;
     }
 
-    /** 
+    /**
      * Integer representing the sum of the integer values
      * of the {...@code OsType} enums.
      * @param set The {...@code EnumSet} which values to get.
@@ -102,7 +102,7 @@
         return bitmap;
     }
 
-    /** 
+    /**
      * Returns {...@code EnumSet} of {...@code OsType} enums
      * from the integer bitmap value.
      * @param value Integer used to construct the {...@code EnumSet}

Modified: 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/SystemId.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/SystemId.java?rev=786970&r1=786969&r2=786970&view=diff
==============================================================================
--- 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/SystemId.java
 (original)
+++ 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/SystemId.java
 Sun Jun 21 09:45:12 2009
@@ -57,7 +57,7 @@
 
     /**
      * Name of the operating system implementation.
-     * @return {...@code String} representing the operating system 
+     * @return {...@code String} representing the operating system
      * this {...@code JVM} is running on.
      */
     public String getSysname() {

Modified: 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/UserIterator.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/UserIterator.java?rev=786970&r1=786969&r2=786970&view=diff
==============================================================================
--- 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/UserIterator.java
 (original)
+++ 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/UserIterator.java
 Sun Jun 21 09:45:12 2009
@@ -30,7 +30,7 @@
     /**
      * Returns {...@code true} if the iteration has more elements.
      * It returns {...@code true} if the {...@code next} would return
-     * an user rather then throwing and exception. 
+     * an user rather then throwing and exception.
      *
      * @return {...@code true} if the iteration has more elements.
      */


Reply via email to