-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
KeepProcessor: Process files that are not in wildcard #28
KeepProcessor: Process files that are not in wildcard #28
Conversation
Set<String> removable = new HashSet<String>(depend.keySet()); | ||
removable.removeAll(closure); | ||
return removable; | ||
} | ||
|
||
private void closureHelper(Set<String> closure, Collection<String> process) { | ||
if (process == null) | ||
private void recursiveProcessDependencies(Set<String> result, Collection<String> roots) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method was just renamed to be more readable, let me know if you want me to undo this.
} | ||
} | ||
|
||
private Set<String> curSet; | ||
private byte[] buf = new byte[0x2000]; | ||
private Set<String> currentDependenciesSet; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also renamed for better readability
So we can find the whole recursive dependencies of the roots
1f8f313
to
6827983
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, @shanielh!
So we can find the whole recursive dependencies of the roots.
Related sbt/sbt-assembly#488