removed deprecated constructor

Former-commit-id: e368144a6f24187c9da05aa55e5a14a2a54621f2
This commit is contained in:
Jeremy Long
2014-01-25 07:01:46 -05:00
parent b2222d368a
commit 8a8241dd1f

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.
*