add helper method for parsing multiline String to DslParams#30
add helper method for parsing multiline String to DslParams#30ChongHan wants to merge 4 commits intoLMAX-Exchange:masterfrom
Conversation
|
I wonder if it would be preferable to use a more explicit name for the new method? I think it's highly unlikely that overloading would cause problems for anyone, but might be better to err on the side of caution.
|
| */ | ||
| static DslParams create(String multilineArgs, DslArg... arguments) | ||
| { | ||
| return new DslParamsParser().parse(multilineArgs.split(System.lineSeparator()), arguments); |
I'm neutral on this, splitting |
as title