I am passing in three parameters to getText but only the first one gets populated.
getText("error.invalidcode", new String[] {"name", "num", "1az"});
And in my ApplicationResources.properties
error.invalidcode={0} and {1} property has error with code {2}.
I am getting the following result: name and {1} property has error with
code {2}.
Where I was expecting:
name and num property has error with code 1az.
What am I missing?
Thanks!

