Skip to content

Commit

Permalink
applied PR from Steve to close issue #96 and issue #97
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong committed Mar 24, 2014
1 parent 77ddad7 commit b6d760f
Show file tree
Hide file tree
Showing 4 changed files with 1,066 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class Engine {
/**
* The list of dependencies.
*/
private final List<Dependency> dependencies;
private List<Dependency> dependencies;
/**
* A Map of analyzers grouped by Analysis phase.
*/
Expand Down Expand Up @@ -137,6 +137,13 @@ public List<Dependency> getDependencies() {
return dependencies;
}

public void setDependencies(List<Dependency> dependencies) {
this.dependencies = dependencies;
//for (Dependency dependency: dependencies) {
// dependencies.add(dependency);
//}
}

/**
* Scans an array of files or directories. If a directory is specified, it will be scanned recursively. Any
* dependencies identified are added to the dependency collection.
Expand Down
Loading

0 comments on commit b6d760f

Please sign in to comment.