Browse Source

More javadoc warning fixes

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@274489 13f79535-47bb-0310-9956-ffa450edef68
master
Jesse Stockall 22 years ago
parent
commit
facf7dcfd0
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/taskdefs/optional/ssh/SSHExec.java
  2. +1
    -1
      src/main/org/apache/tools/ant/util/WeakishReference.java

+ 2
- 2
src/main/org/apache/tools/ant/taskdefs/optional/ssh/SSHExec.java View File

@@ -123,8 +123,8 @@ public class SSHExec extends SSHBase {
} }


/** /**
* Should the output be appended to the file given in
* <code>setOutput</code> ? Default is false, that is, overwrite
* Determines if the output is appended to the file given in
* <code>setOutput</code>. Default is false, that is, overwrite
* the file. * the file.
* *
* @param append True to append to an existing file, false to overwrite. * @param append True to append to an existing file, false to overwrite.


+ 1
- 1
src/main/org/apache/tools/ant/util/WeakishReference.java View File

@@ -73,7 +73,7 @@ public abstract class WeakishReference {
/** /**
* create the appropriate type of reference for the java version * create the appropriate type of reference for the java version
* @param object * @param object
* @return
* @return reference to the Object.
*/ */
public static WeakishReference createReference(Object object) { public static WeakishReference createReference(Object object) {
if(referenceConstructor==null) { if(referenceConstructor==null) {


Loading…
Cancel
Save