From 8a01e80e38e65a25d8e889d1e0862049782734cc Mon Sep 17 00:00:00 2001 From: Dominic Go Date: Sun, 29 Sep 2024 06:04:33 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=20Refactor:=20Replace=20w/=20`NSOb?= =?UTF-8?q?ject+UniqueIdentifierSynthesizing`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../NSObject+UniqueIdentifierSynthesizing.swift | 15 +++++++++++++++ ...Controller+UniqueIdentifierSynthesizing.swift | 16 ---------------- ...Controller+UniqueIdentifierSynthesizing.swift | 14 -------------- 3 files changed, 15 insertions(+), 30 deletions(-) create mode 100644 ios/Temp/NSObject+UniqueIdentifierSynthesizing.swift delete mode 100644 ios/Temp/UIPresentationController+UniqueIdentifierSynthesizing.swift delete mode 100644 ios/Temp/UIViewController+UniqueIdentifierSynthesizing.swift diff --git a/ios/Temp/NSObject+UniqueIdentifierSynthesizing.swift b/ios/Temp/NSObject+UniqueIdentifierSynthesizing.swift new file mode 100644 index 00000000..8d9e655d --- /dev/null +++ b/ios/Temp/NSObject+UniqueIdentifierSynthesizing.swift @@ -0,0 +1,15 @@ +// +// NSObject+UniqueIdentifierSynthesizing.swift +// react-native-ios-modal +// +// Created by Dominic Go on 9/29/24. +// + +import Foundation +import DGSwiftUtilities + + +extension NSObject: UniqueIdentifierSynthesizing { + // empty requirements +}; + diff --git a/ios/Temp/UIPresentationController+UniqueIdentifierSynthesizing.swift b/ios/Temp/UIPresentationController+UniqueIdentifierSynthesizing.swift deleted file mode 100644 index 87efde29..00000000 --- a/ios/Temp/UIPresentationController+UniqueIdentifierSynthesizing.swift +++ /dev/null @@ -1,16 +0,0 @@ -// -// UIPresentationController+UniqueIdentifierSynthesizing.swift -// react-native-ios-modal -// -// Created by Dominic Go on 9/27/24. -// - -import UIKit - - -extension UIPresentationController: UniqueIdentifierSynthesizing { - // empty requirements -}; - - - diff --git a/ios/Temp/UIViewController+UniqueIdentifierSynthesizing.swift b/ios/Temp/UIViewController+UniqueIdentifierSynthesizing.swift deleted file mode 100644 index aadaeac7..00000000 --- a/ios/Temp/UIViewController+UniqueIdentifierSynthesizing.swift +++ /dev/null @@ -1,14 +0,0 @@ -// -// UIViewController+UniqueIdentifierSynthesizing.swift -// react-native-ios-modal -// -// Created by Dominic Go on 9/27/24. -// - -import Foundation -import DGSwiftUtilities - - -extension UIViewController: UniqueIdentifierSynthesizing { - // empty requirements -};