Browse Source

fixing javadoc tags

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270382 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 23 years ago
parent
commit
e29a10c6a8
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      src/main/org/apache/tools/ant/taskdefs/optional/net/TelnetTask.java

+ 4
- 4
src/main/org/apache/tools/ant/taskdefs/optional/net/TelnetTask.java View File

@@ -301,7 +301,7 @@ public class TelnetTask extends Task {
/**
* Read from the telnet session until the string we are
* waiting for is found
* @parm s The string to wait on
* @param s The string to wait on
*/
public void waitForString(String s)
{
@@ -311,8 +311,8 @@ public class TelnetTask extends Task {
/**
* Read from the telnet session until the string we are
* waiting for is found or the timeout has been reached
* @parm s The string to wait on
* @parm timeout The maximum number of seconds to wait
* @param s The string to wait on
* @param timeout The maximum number of seconds to wait
*/
public void waitForString(String s, Integer timeout)
{
@@ -354,7 +354,7 @@ public class TelnetTask extends Task {
/**
* Write this string to the telnet session.
* @parm echoString Logs string sent
* @param echoString Logs string sent
*/
public void sendString(String s, boolean echoString)
{


Loading…
Cancel
Save