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

Commit 33bcb24

Browse files
committed
Fix license comment
1 parent de02c2b commit 33bcb24

File tree

2 files changed

+1
-3
lines changed
  • packages/quick_actions/quick_actions_android/example

2 files changed

+1
-3
lines changed

packages/quick_actions/quick_actions_android/example/android/app/src/androidTest/java/io/flutter/plugins/quickactionsexample/QuickActionsTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// Copyright 2013 The Flutter Authors. All rights reserved.
1+
// Copyright 2013 The Flutter Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

packages/quick_actions/quick_actions_android/example/lib/main.dart

-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ class _MyHomePageState extends State<MyHomePage> {
4242

4343
final QuickActionsAndroid quickActions = QuickActionsAndroid();
4444
quickActions.initialize((String shortcutType) {
45-
print('Handling shortcut: $shortcutType');
4645
setState(() {
4746
if (shortcutType != null) {
4847
shortcut = '$shortcutType has launched';
@@ -76,7 +75,6 @@ class _MyHomePageState extends State<MyHomePage> {
7675
title: Text(shortcut),
7776
),
7877
body: const Center(
79-
// Remember to update android/app/src/androidTest/java/io/flutter/plugins/quickactionsexample/QuickActionsTest.java appShortcutLaunchActivityAfterPressing if you change this.
8078
child: Text('On home screen, long press the app icon to '
8179
'get Action one or Action two options. Tapping on that action should '
8280
'set the toolbar title.'),

0 commit comments

Comments
 (0)