1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-11-05 21:17:52 +00:00

fix FileFormatOption constructor not using withMetadata parameter

This commit is contained in:
Cosmin Polifronie 2019-07-01 18:52:38 +03:00
parent fb108ebb5a
commit ac64f9fa11

View File

@ -79,7 +79,7 @@ public final class FileFormatOption implements Serializable {
}
public FileFormatOption(FileFormat fileFormat, boolean withMetadata) {
this(fileFormat, null, false, false, "_top", false, null, TikzFontDistortion.getDefault(), 1.0);
this(fileFormat, null, withMetadata, false, "_top", false, null, TikzFontDistortion.getDefault(), 1.0);
}
private FileFormatOption(FileFormat fileFormat, AffineTransform at, boolean withMetadata, boolean useRedForError,