jdk/src/java.base/share/classes/sun/net/ftp/impl/FtpClient.java
changeset 28059 e576535359cc
parent 26720 6b160d97c51d
child 31061 fead7d86d75f
--- a/jdk/src/java.base/share/classes/sun/net/ftp/impl/FtpClient.java	Fri Dec 12 15:07:00 2014 -0500
+++ b/jdk/src/java.base/share/classes/sun/net/ftp/impl/FtpClient.java	Thu Oct 30 07:31:41 2014 -0700
@@ -2187,7 +2187,7 @@
             return resp.get(0).substring(4);
         }
         // on multiple lines answers, like the ones above, remove 1st and last
-        // line, concat the the others.
+        // line, concat the others.
         StringBuilder sb = new StringBuilder();
         for (int i = 1; i < resp.size() - 1; i++) {
             sb.append(resp.get(i).substring(3));