On Tue, 17 Jan 2023 22:44:29 GMT, Justin Lu wrote:
> A code example for text.MessageFormat under the **Usage Information** section
> has a comment with the wrong variable name.
>
>
> * Object[] objs = mf.parse(forParsing, new ParsePosition(0));
> * // result now equals {new String("z")}
>
>
On Tue, 17 Jan 2023 22:44:29 GMT, Justin Lu wrote:
> A code example for text.MessageFormat under the **Usage Information** section
> has a comment with the wrong variable name.
>
>
> * Object[] objs = mf.parse(forParsing, new ParsePosition(0));
> * // result now equals {new String("z")}
>
>
A code example for text.MessageFormat under the **Usage Information** section
has a comment with the wrong variable name.
* Object[] objs = mf.parse(forParsing, new ParsePosition(0));
* // result now equals {new String("z")}
The name of the intended variable should be `objs`, not `result`
---
On Tue, 17 Jan 2023 22:00:29 GMT, Justin Lu wrote:
>> A code example for text.MessageFormat under the **Usage Information**
>> section has a comment with the wrong variable name.
>>
>>
>> * Object[] objs = mf.parse(forParsing, new ParsePosition(0));
>> * // result now equals {new String("z")}
> A code example for text.MessageFormat under the **Usage Information** section
> has a comment with the wrong variable name.
>
>
> * Object[] objs = mf.parse(forParsing, new ParsePosition(0));
> * // result now equals {new String("z")}
>
>
> The name of the intended variable should be `objs`,
On Tue, 17 Jan 2023 21:28:23 GMT, Justin Lu wrote:
> A code example for text.MessageFormat under the **Usage Information** section
> has a comment with the wrong variable name.
>
>
> * Object[] objs = mf.parse(forParsing, new ParsePosition(0));
> * // result now equals {new String("z")}
>
>
A code example for text.MessageFormat under the **Usage Information** section
has a comment with the wrong variable name.
* Object[] objs = mf.parse(forParsing, new ParsePosition(0));
* // result now equals {new String("z")}
The name of the intended variable should be `objs`, not `result`
---