You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Command
public Stream<String> listImports(final Dir dir) {
return dir.searchJava()
.map(Java::parse)
.map(Java::getImports)
.flatMap(Collection::stream);
}
The contract would be each line is printed as a single line. The newline would be added automatically and need not be present in the individual string values.
The text was updated successfully, but these errors were encountered:
For example:
The contract would be each line is printed as a single line. The newline would be added automatically and need not be present in the individual string values.
The text was updated successfully, but these errors were encountered: