Remove unused parameters in CutyPrint.createCSSFile
This commit is contained in:
parent
1d53ca920a
commit
36e14c5c6a
1 changed files with 2 additions and 6 deletions
|
|
@ -198,9 +198,7 @@ public class CutyPrint {
|
|||
String generatedCSSFile = createCSSFile(
|
||||
absolutePath + "/planner/css/print.css",
|
||||
plannerWidth,
|
||||
planner, parameters
|
||||
.get("advances"),
|
||||
parameters.get("reportedHours"),
|
||||
planner,
|
||||
parameters.get("labels"),
|
||||
parameters.get("resources"),
|
||||
expanded,
|
||||
|
|
@ -312,9 +310,7 @@ public class CutyPrint {
|
|||
}
|
||||
|
||||
private static String createCSSFile(String srFile, int width,
|
||||
Planner planner, String advances, String reportedHours,
|
||||
String labels, String resources,
|
||||
boolean expanded,
|
||||
Planner planner, String labels, String resources, boolean expanded,
|
||||
int minimumWidthForTaskNameColumn) {
|
||||
File generatedCSS = null;
|
||||
try {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue