Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[274] Corrected javadoc for Part.write(String) #276

Merged
merged 1 commit into from
Dec 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions api/src/main/java/javax/servlet/http/Part.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,11 @@ public interface Part {
* implementation to use, for example, file renaming, where possible, rather than copying all of the underlying
* data, thus gaining a significant performance benefit.
*
* @param fileName The location into which the uploaded part should be stored. The value may be a file name or a
* path. The actual location of the file in the filesystem is relative to
* {@link javax.servlet.MultipartConfigElement#getLocation()}. Absolute paths are used as provided
* and are relative to <code>getLocation()</code>. Note: that this is a system dependent string and
* URI notation may not be acceptable on all systems. For portability, this string should be
* generated with the File or Path APIs.
* @param fileName The location into which the uploaded part should be stored. Relative paths are relative to
* {@link javax.servlet.MultipartConfigElement#getLocation()}. Absolute paths are used as
* provided. Note: that this is a system dependent string and URI notation may not be
* acceptable on all systems. For portability, this string should be generated with the
* File or Path APIs.
*
* @throws IOException if an error occurs.
*/
Expand Down