diff options
author | Andrew John Hughes <gnu_andrew@member.fsf.org> | 2005-01-16 02:14:44 +0000 |
---|---|---|
committer | Andrew John Hughes <gnu_andrew@member.fsf.org> | 2005-01-16 02:14:44 +0000 |
commit | 2522f3363d0ccbb714b010c6ce79eb698052cca3 (patch) | |
tree | f9753bfb14e4195fe8c928b76e7d5407375bddf2 /java/io/FileOutputStream.java | |
parent | 18addaa71c45fbdb60627f349e52027b3281e879 (diff) | |
download | classpath-2522f3363d0ccbb714b010c6ce79eb698052cca3.tar.gz |
2005-01-16 Andrew John Hughes <gnu_andrew@member.fsf.org>
* Merge of November 2004 HEAD patches to generics branch
Diffstat (limited to 'java/io/FileOutputStream.java')
-rw-r--r-- | java/io/FileOutputStream.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/io/FileOutputStream.java b/java/io/FileOutputStream.java index d81d6d19b..1702ffe8f 100644 --- a/java/io/FileOutputStream.java +++ b/java/io/FileOutputStream.java @@ -72,7 +72,7 @@ public class FileOutputStream extends OutputStream * one exists) with the name of the file to be opened. An exception is * thrown if writing is not allowed. * - * @param name The name of the file this stream should write to + * @param path The name of the file this stream should write to * @param append <code>true</code> to append bytes to the end of the file, * or <code>false</code> to write bytes to the beginning * @@ -95,7 +95,7 @@ public class FileOutputStream extends OutputStream * one exists) with the name of the file to be opened. An exception is * thrown if writing is not allowed. * - * @param name The name of the file this stream should write to + * @param path The name of the file this stream should write to * * @exception SecurityException If write access to the file is not allowed * @exception FileNotFoundException If a non-security error occurs @@ -176,7 +176,7 @@ public class FileOutputStream extends OutputStream * one exists) with the specified <code>FileDescriptor</code> as an argument. * An exception is thrown if writing is not allowed. * - * @param file The <code>FileDescriptor</code> this stream should write to + * @param fdObj The <code>FileDescriptor</code> this stream should write to * * @exception SecurityException If write access to the file is not allowed */ |