Skip to content

Commit 61f9286

Browse files
committed
💚
1 parent ee35821 commit 61f9286

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

package/cpp/api/JsiSkApi.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
#include "JsiSkMaskFilterFactory.h"
2525
#include "JsiSkMatrix.h"
2626
#include "JsiSkPaint.h"
27-
#include "JsiSkParagraphBuilderFactory.h"
2827
#include "JsiSkParagraphBuilder.h"
28+
#include "JsiSkParagraphBuilderFactory.h"
2929
#include "JsiSkPath.h"
3030
#include "JsiSkPathEffect.h"
3131
#include "JsiSkPathEffectFactory.h"
@@ -63,8 +63,8 @@ class JsiSkApi : public JsiSkHostObject {
6363
*/
6464
JsiSkApi(jsi::Runtime &runtime, std::shared_ptr<RNSkPlatformContext> context)
6565
: JsiSkHostObject(context) {
66-
// We create the system font manager eagerly since it has proven to be too slow
67-
// to do it on demand
66+
// We create the system font manager eagerly since it has proven to be too
67+
// slow to do it on demand
6868
JsiSkFontMgrFactory::getFontMgr(getContext());
6969
installFunction("Font", JsiSkFont::createCtor(context));
7070
installFunction("Paint", JsiSkPaint::createCtor(context));

package/cpp/api/JsiSkParagraphBuilder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77

88
#include <JsiSkFont.h>
99
#include <JsiSkFontMgr.h>
10+
#include <JsiSkFontMgrFactory.h>
1011
#include <JsiSkHostObjects.h>
1112
#include <JsiSkParagraph.h>
1213
#include <JsiSkParagraphStyle.h>
1314
#include <JsiSkTextStyle.h>
1415
#include <JsiSkTypefaceFontProvider.h>
15-
#include <JsiSkFontMgrFactory.h>
1616

1717
#pragma clang diagnostic push
1818
#pragma clang diagnostic ignored "-Wdocumentation"

package/cpp/api/JsiSkParagraphBuilderFactory.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
#pragma clang diagnostic pop
1414

15-
1615
namespace RNSkia {
1716

1817
namespace jsi = facebook::jsi;

0 commit comments

Comments
 (0)