removed deprecated constructor

Former-commit-id: 1df959763cbe32fe7a820c59ed3280770ab98be0
This commit is contained in:
Jeremy Long
2014-01-25 07:01:46 -05:00
parent c7d51a29ac
commit 9abd51f318

View File

@@ -100,20 +100,6 @@ public class ReportGenerator {
context.put("version", Settings.getString("application.version", "Unknown"));
}
/**
* Constructs a new ReportGenerator. This implementation has been left in so tat backward compatability is not
* broken. However, this constructor should no longer be used.
*
* @param applicationName the application name being analyzed
* @param dependencies the list of dependencies
* @param analyzers the list of analyzers used
* @deprecated
*/
@Deprecated
public ReportGenerator(String applicationName, List<Dependency> dependencies, List<Analyzer> analyzers) {
this(applicationName, dependencies, analyzers, null);
}
/**
* Creates a new Velocity Engine.
*