File tree Expand file tree Collapse file tree
android/guava/src/com/google/common
guava/src/com/google/common Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -757,7 +757,7 @@ public String toString() {
757757
758758 /**
759759 * Parses the specified string as a double-precision floating point value. The ASCII character
760- * {@code '-'} (<code>'\u002D'</code> ) is recognized as the minus sign.
760+ * {@code '-'} (U+002D ) is recognized as the minus sign.
761761 *
762762 * <p>Unlike {@link Double#parseDouble(String)}, this method returns {@code null} instead of
763763 * throwing an exception if parsing fails. Valid inputs are exactly those accepted by {@link
Original file line number Diff line number Diff line change @@ -706,7 +706,7 @@ float[] toFloatArray() {
706706
707707 /**
708708 * Parses the specified string as a single-precision floating point value. The ASCII character
709- * {@code '-'} (<code>'\u002D'</code> ) is recognized as the minus sign.
709+ * {@code '-'} (U+002D ) is recognized as the minus sign.
710710 *
711711 * <p>Unlike {@link Float#parseFloat(String)}, this method returns {@code null} instead of
712712 * throwing an exception if parsing fails. Valid inputs are exactly those accepted by {@link
Original file line number Diff line number Diff line change @@ -803,7 +803,7 @@ int[] toIntArray() {
803803
804804 /**
805805 * Parses the specified string as a signed decimal integer value. The ASCII character {@code '-'}
806- * (<code>'\u002D'</code> ) is recognized as the minus sign.
806+ * (U+002D ) is recognized as the minus sign.
807807 *
808808 * <p>Unlike {@link Integer#parseInt(String)}, this method returns {@code null} instead of
809809 * throwing an exception if parsing fails. Additionally, this method only accepts ASCII digits,
@@ -824,7 +824,7 @@ int[] toIntArray() {
824824
825825 /**
826826 * Parses the specified string as a signed integer value using the specified radix. The ASCII
827- * character {@code '-'} (<code>'\u002D'</code> ) is recognized as the minus sign.
827+ * character {@code '-'} (U+002D ) is recognized as the minus sign.
828828 *
829829 * <p>Unlike {@link Integer#parseInt(String, int)}, this method returns {@code null} instead of
830830 * throwing an exception if parsing fails. Additionally, this method only accepts ASCII digits,
Original file line number Diff line number Diff line change @@ -357,8 +357,8 @@ static int digit(char c) {
357357 }
358358
359359 /**
360- * Parses the specified string as a signed decimal long value. The ASCII character {@code '-'} (
361- * <code>'\u002D'</code> ) is recognized as the minus sign.
360+ * Parses the specified string as a signed decimal long value. The ASCII character {@code '-'}
361+ * (U+002D ) is recognized as the minus sign.
362362 *
363363 * <p>Unlike {@link Long#parseLong(String)}, this method returns {@code null} instead of throwing
364364 * an exception if parsing fails. Additionally, this method only accepts ASCII digits, and returns
@@ -379,7 +379,7 @@ static int digit(char c) {
379379
380380 /**
381381 * Parses the specified string as a signed long value using the specified radix. The ASCII
382- * character {@code '-'} (<code>'\u002D'</code> ) is recognized as the minus sign.
382+ * character {@code '-'} (U+002D ) is recognized as the minus sign.
383383 *
384384 * <p>Unlike {@link Long#parseLong(String, int)}, this method returns {@code null} instead of
385385 * throwing an exception if parsing fails. Additionally, this method only accepts ASCII digits,
Original file line number Diff line number Diff line change 2222 * {@code Escaper} instances suitable for strings to be included in XML attribute values and
2323 * elements' text contents. When possible, avoid manual escaping by using templating systems and
2424 * high-level APIs that provide autoescaping. For example, consider <a
25- * href="http ://www.xom.nu/">XOM</a>.
25+ * href="https ://www.xom.nu/">XOM</a>.
2626 *
2727 * <p><b>Note:</b> Currently the escapers provided by this class do not escape any characters
2828 * outside the ASCII character range. Unlike HTML escaping the XML escapers will not escape
Original file line number Diff line number Diff line change @@ -752,7 +752,7 @@ public String toString() {
752752
753753 /**
754754 * Parses the specified string as a double-precision floating point value. The ASCII character
755- * {@code '-'} (<code>'\u002D'</code> ) is recognized as the minus sign.
755+ * {@code '-'} (U+002D ) is recognized as the minus sign.
756756 *
757757 * <p>Unlike {@link Double#parseDouble(String)}, this method returns {@code null} instead of
758758 * throwing an exception if parsing fails. Valid inputs are exactly those accepted by {@link
Original file line number Diff line number Diff line change @@ -706,7 +706,7 @@ float[] toFloatArray() {
706706
707707 /**
708708 * Parses the specified string as a single-precision floating point value. The ASCII character
709- * {@code '-'} (<code>'\u002D'</code> ) is recognized as the minus sign.
709+ * {@code '-'} (U+002D ) is recognized as the minus sign.
710710 *
711711 * <p>Unlike {@link Float#parseFloat(String)}, this method returns {@code null} instead of
712712 * throwing an exception if parsing fails. Valid inputs are exactly those accepted by {@link
Original file line number Diff line number Diff line change @@ -798,7 +798,7 @@ int[] toIntArray() {
798798
799799 /**
800800 * Parses the specified string as a signed decimal integer value. The ASCII character {@code '-'}
801- * (<code>'\u002D'</code> ) is recognized as the minus sign.
801+ * (U+002D ) is recognized as the minus sign.
802802 *
803803 * <p>Unlike {@link Integer#parseInt(String)}, this method returns {@code null} instead of
804804 * throwing an exception if parsing fails. Additionally, this method only accepts ASCII digits,
@@ -819,7 +819,7 @@ int[] toIntArray() {
819819
820820 /**
821821 * Parses the specified string as a signed integer value using the specified radix. The ASCII
822- * character {@code '-'} (<code>'\u002D'</code> ) is recognized as the minus sign.
822+ * character {@code '-'} (U+002D ) is recognized as the minus sign.
823823 *
824824 * <p>Unlike {@link Integer#parseInt(String, int)}, this method returns {@code null} instead of
825825 * throwing an exception if parsing fails. Additionally, this method only accepts ASCII digits,
Original file line number Diff line number Diff line change @@ -357,8 +357,8 @@ static int digit(char c) {
357357 }
358358
359359 /**
360- * Parses the specified string as a signed decimal long value. The ASCII character {@code '-'} (
361- * <code>'\u002D'</code> ) is recognized as the minus sign.
360+ * Parses the specified string as a signed decimal long value. The ASCII character {@code '-'}
361+ * (U+002D ) is recognized as the minus sign.
362362 *
363363 * <p>Unlike {@link Long#parseLong(String)}, this method returns {@code null} instead of throwing
364364 * an exception if parsing fails. Additionally, this method only accepts ASCII digits, and returns
@@ -379,7 +379,7 @@ static int digit(char c) {
379379
380380 /**
381381 * Parses the specified string as a signed long value using the specified radix. The ASCII
382- * character {@code '-'} (<code>'\u002D'</code> ) is recognized as the minus sign.
382+ * character {@code '-'} (U+002D ) is recognized as the minus sign.
383383 *
384384 * <p>Unlike {@link Long#parseLong(String, int)}, this method returns {@code null} instead of
385385 * throwing an exception if parsing fails. Additionally, this method only accepts ASCII digits,
Original file line number Diff line number Diff line change 2222 * {@code Escaper} instances suitable for strings to be included in XML attribute values and
2323 * elements' text contents. When possible, avoid manual escaping by using templating systems and
2424 * high-level APIs that provide autoescaping. For example, consider <a
25- * href="http ://www.xom.nu/">XOM</a>.
25+ * href="https ://www.xom.nu/">XOM</a>.
2626 *
2727 * <p><b>Note:</b> Currently the escapers provided by this class do not escape any characters
2828 * outside the ASCII character range. Unlike HTML escaping the XML escapers will not escape
You can’t perform that action at this time.
0 commit comments