You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/04/17 03:42:20 UTC

svn commit: r1468707 - /commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileSystemUtils.java

Author: sebb
Date: Wed Apr 17 01:42:20 2013
New Revision: 1468707

URL: http://svn.apache.org/r1468707
Log:
Javadoc

Modified:
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileSystemUtils.java

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileSystemUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileSystemUtils.java?rev=1468707&r1=1468706&r2=1468707&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileSystemUtils.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileSystemUtils.java Wed Apr 17 01:42:20 2013
@@ -457,7 +457,7 @@ public class FileSystemUtils {
      * @param max The maximum limit for the lines returned
      * @param timeout The timout amount in milliseconds or no timeout if the value
      *  is zero or less
-     * @return the parsed data
+     * @return the lines returned by the command, converted to lower-case
      * @throws IOException if an error occurs
      */
     List<String> performCommand(final String[] cmdAttribs, final int max, final long timeout) throws IOException {
@@ -467,7 +467,7 @@ public class FileSystemUtils {
         // http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4801027
         // http://forum.java.sun.com/thread.jspa?threadID=533029&messageID=2572018
         // however, its still not perfect as the JDK support is so poor
-        // (see commond-exec or ant for a better multi-threaded multi-os solution)
+        // (see commons-exec or Ant for a better multi-threaded multi-os solution)
         
         final List<String> lines = new ArrayList<String>(20);
         Process proc = null;