JavaDoc changes required to prevent the release process breaking

This commit is contained in:
Graham Triggs 2016-06-23 20:08:14 +01:00
parent abac59cd18
commit 4349724207
124 changed files with 359 additions and 480 deletions

View file

@ -140,11 +140,11 @@ public class Cookie {
}
/**
* Convert <code>%</code><i>hh</i> sequences to single characters, and
* Convert {@code %}<i>hh</i> sequences to single characters, and
* convert plus to space.
* @param s A string that may contain
* <code>+</code>&nbsp;<small>(plus)</small> and
* <code>%</code><i>hh</i> sequences.
* {@code +}&nbsp;<small>(plus)</small> and
* {@code %}<i>hh</i> sequences.
* @return The unescaped string.
*/
public static String unescape(String s) {