1
0
mirror of https://github.com/octoleo/plantuml.git synced 2025-01-23 15:18:32 +00:00

Merge pull request #220 from cosminpolifronie/master

fix FileFormatOption constructor not using withMetadata parameter
This commit is contained in:
arnaudroques 2019-10-10 16:18:02 +02:00 committed by GitHub
commit 82b570d0f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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,