Revert useless whitespace-only modifications

Fix for an autoformatter side-effect.
This commit is contained in:
Emanuele Ballarin
2018-06-17 07:45:29 +02:00
committed by unknown
parent 660c719779
commit 3ed59809de
+3 -3
View File
@@ -194,9 +194,9 @@ const patchNames = (dom, ligatures, profile) => {
}
const fontName = `${name}${profile.suffixWithLeadingHyphen}-${style}`;
const familyNamePlat = `${ names.familyName }${ profile.suffixWithLeadingSpace }`;
const familyName = `${ familyNamePlat } ${ familyStyle }`;
const fullName = `${ familyName } ${ fullNameStyle }`;
const familyNamePlat = `${names.familyName}${profile.suffixWithLeadingSpace}`;
const familyName = `${familyNamePlat} ${familyStyle}`;
const fullName = `${familyName} ${fullNameStyle}`;
const uniqueId = `${names.foundry}: ${fullName}: ${names.version}`;
// patch CFFFont
const cffFont = xpath.select('/ttFont/CFF/CFFFont', dom, true);