archaius icon indicating copy to clipboard operation
archaius copied to clipboard

Filter out empty file name in the config urls

Open liuchong opened this issue 3 years ago • 0 comments

Filter out empty file name in the config urls. This could also be solved with one line like https://github.com/leancloud/archaius/pull/2 but at least java8 is required:

fileNames = Arrays.stream(fileNames).filter(s -> !s.isEmpty()).toArray(String[]::new);

liuchong avatar Mar 22 '21 05:03 liuchong