ср, 30 июн. 2021 г. в 18:26, Christopher Schultz :
>
> All,
>
> On 6/30/21 11:23, Christopher Schultz wrote:
> > Mark,
> >
> > On 6/30/21 08:51, Mark Thomas wrote:
> >> All,
> >>
> >> I wanted to get some feedback on a possible code clea
All,
On 6/30/21 11:23, Christopher Schultz wrote:
Mark,
On 6/30/21 08:51, Mark Thomas wrote:
All,
I wanted to get some feedback on a possible code clean-up. Currently,
we declare literal arrays like this:
String[] array = new String[] { "value1", "value2", "valu
Mark,
On 6/30/21 08:51, Mark Thomas wrote:
All,
I wanted to get some feedback on a possible code clean-up. Currently, we
declare literal arrays like this:
String[] array = new String[] { "value1", "value2", "value3" );
We could simplify these declarations t
On Wed, Jun 30, 2021 at 3:51 PM Mark Thomas wrote:
> All,
>
> I wanted to get some feedback on a possible code clean-up. Currently, we
> declare literal arrays like this:
>
> String[] array = new String[] { "value1", "value2", "value3" );
>
&g
All,
I wanted to get some feedback on a possible code clean-up. Currently, we
declare literal arrays like this:
String[] array = new String[] { "value1", "value2", "value3" );
We could simplify these declarations to:
String[] array = { "value1", &qu