This commit is contained in:
2019-04-29 01:08:52 +08:00
parent ff240dd3ea
commit a255c52cc0
3 changed files with 54 additions and 10 deletions

View File

@@ -399,7 +399,7 @@ public final class MetaKit {
Set<String> allAlias;
if (!all) {
allAlias = Liangs.streamConcat(
allAlias = Liangs.concat(
metaService.getFilters().stream().map(f -> {
String col = (String) f.getName();
String alias = col.split("[.]")[0];
@@ -408,7 +408,7 @@ public final class MetaKit {
metaService.getExports().stream().map(x -> x.get("col").split("[.]")[0]),
metaService.getShows().stream().map(x -> x.get("col").split("[.]")[0])/*, todo: xxx
metaService.getEdits().stream().map(x -> x.split("[.]")[0])*/
);
).collect(Collectors.toSet());
} else {
allAlias = new HashSet<>();