Skip to content

Commit 30b68e2

Browse files
committed
Javadoc
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1468707 13f79535-47bb-0310-9956-ffa450edef68
1 parent f89670b commit 30b68e2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/apache/commons/io/FileSystemUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ long parseBytes(final String freeSpace, final String path) throws IOException {
457457
* @param max The maximum limit for the lines returned
458458
* @param timeout The timout amount in milliseconds or no timeout if the value
459459
* is zero or less
460-
* @return the parsed data
460+
* @return the lines returned by the command, converted to lower-case
461461
* @throws IOException if an error occurs
462462
*/
463463
List<String> performCommand(final String[] cmdAttribs, final int max, final long timeout) throws IOException {
@@ -467,7 +467,7 @@ List<String> performCommand(final String[] cmdAttribs, final int max, final long
467467
// http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4801027
468468
// http://forum.java.sun.com/thread.jspa?threadID=533029&messageID=2572018
469469
// however, its still not perfect as the JDK support is so poor
470-
// (see commond-exec or ant for a better multi-threaded multi-os solution)
470+
// (see commons-exec or Ant for a better multi-threaded multi-os solution)
471471

472472
final List<String> lines = new ArrayList<String>(20);
473473
Process proc = null;

0 commit comments

Comments
 (0)