Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.

Commit df0c262

Browse files
committed
Fix javadocs for MOVE-related methods.
1 parent 93eb767 commit df0c262

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

mail/src/main/java/com/sun/mail/imap/IMAPFolder.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2042,7 +2042,7 @@ public synchronized AppendUID[] copyUIDMessages(Message[] msgs,
20422042
}
20432043

20442044
/**
2045-
* Copy the specified messages from this folder, to the
2045+
* Move the specified messages from this folder, to the
20462046
* specified destination.
20472047
*
20482048
* Depends on the MOVE extension
@@ -2060,23 +2060,23 @@ public synchronized void moveMessages(Message[] msgs, Folder folder)
20602060
}
20612061

20622062
/**
2063-
* Copy the specified messages from this folder, to the
2063+
* Move the specified messages from this folder, to the
20642064
* specified destination.
20652065
* Return array of AppendUID objects containing
20662066
* UIDs of these messages in the destination folder.
20672067
* Each element of the returned array corresponds to
20682068
* an element of the <code>msgs</code> array. A null
20692069
* element means the server didn't return UID information
2070-
* for the copied message. <p>
2070+
* for the moved message. <p>
20712071
*
20722072
* Depends on the MOVE extension
20732073
* (<A HREF="http://www.ietf.org/rfc/rfc6851.txt">RFC 6851</A>)
20742074
* and the COPYUID response code defined by the
20752075
* UIDPLUS extension
20762076
* (<A HREF="http://www.ietf.org/rfc/rfc4315.txt">RFC 4315</A>).
20772077
*
2078-
* @param msgs the messages to copy
2079-
* @param folder the folder to copy the messages to
2078+
* @param msgs the messages to move
2079+
* @param folder the folder to move the messages to
20802080
* @return array of AppendUID objects
20812081
* @exception MessagingException for failures
20822082
* @since JavaMail 1.5.4

0 commit comments

Comments
 (0)