Daniel Rall <[EMAIL PROTECTED]> writes:
> /**
> * This class extends normal Java properties by adding the possibility
> * to use the same key many times concatenating the value strings
> @@ -951,6 +953,11 @@
> if (value instanceof String)
> {
> return (String) value;
> + }
> + else if (value instanceof Vector)
> + {
> + return StringUtils.join((Vector) value,
> + PropertiesTokenizer.DELIMETER);
> }
> else if (value == null)
> {
And on second thought, these two else if blocks should have their
order switched since it's more likely that the latter will occur more
often than the former.
Daniel
- [PATCH] Configuration Daniel Rall
- RE: [PATCH] Configuration Daniel Rall
- RE: [PATCH] Configuration Ilkka Priha
- Re: [PATCH] Configuration Geir Magnusson Jr.
- Re: [PATCH] Configuration Daniel Rall
- Re: [PATCH] Configuration Jason van Zyl
- Re: [PATCH] Configuration Geir Magnusson Jr.
- RE: [PATCH] Configuration Ilkka Priha
- RE: [PATCH] Configuration Jose Alberto Fernandez
- Re: [PATCH] Configuration Geir Magnusson Jr.
- RE: [PATCH] Configuration Ilkka Priha
- Re: [PATCH] Configuration Jon Stevens
