return StreamSupport.stream(artifacts.spliterator(),false).map(artifact -> artifact.getRootRelativePath().getPathString()).collect(Collectors.joining(joinStr)); | return artifacts.stream().map(artifact -> artifact.getRootRelativePath().getPathString()).collect(Collectors.joining(joinStr)); | StreamSupport.stream(artifacts.spliterator(),false) | artifacts.stream() | bazel | 402901add15082e83bd26063b4754658859cab1c | com.google.devtools.build.lib.analysis.actions.Substitution.JoinedArtifactShortPathSubstitution | | | | - java.util.stream.StreamSupport
| | Uses | True |