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

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
hellohuanlin committed Sep 7, 2022
1 parent 569eb63 commit 40875c9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/quick_actions/quick_actions_ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## 1.0.0+1

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

## 1.0.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ public final class QuickActionsPlugin: NSObject, FlutterPlugin {
/// The type of the shortcut item selected when launching the app.
private var launchingShortcutType: String? = nil

// TODO: (hellohuanlin) remove `@objc` attribute after migrating tests to Swift.
@available(*, unavailable)
override init() {
fatalError("Not implemented.")
}

// TODO: (hellohuanlin) remove `@objc` attribute and make it non-public after migrating tests to Swift.
@objc
public init(
channel: FlutterMethodChannel,
Expand Down

0 comments on commit 40875c9

Please sign in to comment.