Skip to content

Commit

Permalink
javadoc vs. Java™ imports, the never-ending frustration
Browse files Browse the repository at this point in the history
  • Loading branch information
mirabilos committed Jun 27, 2020
1 parent 5054b41 commit d846c8f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/evolvis/tartools/rfc822/Path.java
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ protected Path(final String input)
* Parses the address as mailbox-list, e.g. for the From and Resent-From headers
* (but see {@link #asAddressList()} for RFC6854’s RFC2026 §3.3(d) Limited Use)
*
* @return parser result; remember to call {@link AddressList#isValid()} first!
* @return parser result; remember to call {@link Path.AddressList#isValid()} first!
*/
public AddressList
asMailboxList()
Expand All @@ -542,7 +542,7 @@ protected Path(final String input)
*
* @param allowRFC6854forLimitedUse use mailbox instead of address parsing
*
* @return parser result; remember to call {@link Address#isValid()} first!
* @return parser result; remember to call {@link Path.Address#isValid()} first!
*/
public Address
forSender(final boolean allowRFC6854forLimitedUse)
Expand All @@ -559,7 +559,7 @@ protected Path(final String input)
* allows using this for the From and Resent-From headers, normally
* covered by the {@link #asMailboxList()} method.
*
* @return parser result; remember to call {@link AddressList#isValid()} first!
* @return parser result; remember to call {@link Path.AddressList#isValid()} first!
*/
public AddressList
asAddressList()
Expand Down

0 comments on commit d846c8f

Please sign in to comment.