Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 40875c9

Browse files
committed
nit
1 parent 569eb63 commit 40875c9

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

packages/quick_actions/quick_actions_ios/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## 1.0.0+1
22

33
* Removes custom modulemap file with "Test" submodule and private headers for Swift migration.
4-
* Migrated `FLTQuickActionsPlugin` class to Swift.
4+
* Migrates `FLTQuickActionsPlugin` class to Swift.
55

66
## 1.0.0
77

packages/quick_actions/quick_actions_ios/ios/Classes/QuickActionsPlugin.swift

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,12 @@ public final class QuickActionsPlugin: NSObject, FlutterPlugin {
2020
/// The type of the shortcut item selected when launching the app.
2121
private var launchingShortcutType: String? = nil
2222

23-
// TODO: (hellohuanlin) remove `@objc` attribute after migrating tests to Swift.
23+
@available(*, unavailable)
24+
override init() {
25+
fatalError("Not implemented.")
26+
}
27+
28+
// TODO: (hellohuanlin) remove `@objc` attribute and make it non-public after migrating tests to Swift.
2429
@objc
2530
public init(
2631
channel: FlutterMethodChannel,

0 commit comments

Comments
 (0)