Skip to content

Commit cfbaa18

Browse files
authored
Remove shortner (flutter#172844)
Replacing shortner urls with the long versions. Fixes flutter#172843 ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [x] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [x] I signed the [CLA]. - [x] I listed at least one issue that this PR fixes in the description above. - [ ] I updated/added relevant documentation (doc comments with `///`). - [ ] I added new tests to check the change I am making, or this PR is [test-exempt]. - [x] I followed the [breaking change policy] and added [Data Driven Fixes] where supported. - [x] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on [Discord]. <!-- Links --> [Contributor Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview [Tree Hygiene]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md [test-exempt]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests [Flutter Style Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md [Features we expect every widget to implement]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement [CLA]: https://cla.developers.google.com/ [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes [Discord]: https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md [Data Driven Fixes]: https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
1 parent 0125d95 commit cfbaa18

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

dev/integration_tests/flutter_gallery/lib/gallery/about.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ void showGalleryAboutDialog(BuildContext context) {
6666
),
6767
_LinkTextSpan(
6868
style: linkStyle,
69-
url: 'https://goo.gl/iv1p4G',
69+
url: 'https://github.com/flutter/gallery',
7070
text: 'flutter github repo',
7171
),
7272
TextSpan(style: aboutTextStyle, text: '.'),

dev/integration_tests/flutter_gallery/tool/run_instrumentation_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ cd android
1515
# Currently there's no non-hacky way to pass a device ID to gradlew, but it's
1616
# OK as in the devicelab we have one device per host.
1717
#
18-
# See also: https://goo.gl/oe5aUW
18+
# See also: https://stackoverflow.com/q/23960667/
1919
./gradlew connectedAndroidTest -Ptarget=test/live_smoketest.dart

dev/integration_tests/new_gallery/lib/studies/reply/waterfall_notched_rectangle.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class WaterfallNotchedRectangle extends NotchedShape {
4444
// Segment C - a Bezier curve from segment B back to the host's top edge.
4545
//
4646
// A detailed explanation and the derivation of the formulas below is
47-
// available at: https://goo.gl/Ufzrqn
47+
// available at: https://docs.google.com/document/d/e/2PACX-1vRVPWGtR85bawGynRSWzYTKgQtqrxCnxXCKC5xM9ab3IvtRHueku4rRIuJ4TbedzyMz2oy2pkzM71-_/pub
4848

4949
// s1, s2 are the two knobs controlling the behavior of the bezier curve.
5050
const double s1 = 21.0;

engine/src/flutter/third_party/tonic/dart_args.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class DartArgIterator {
4747
};
4848

4949
// Classes for generating and storing an argument pack of integer indices
50-
// (based on well-known "indices trick", see: http://goo.gl/bKKojn):
50+
// (based on well-known "indices trick"):
5151
template <size_t... indices>
5252
struct IndicesHolder {};
5353

packages/flutter/lib/src/material/arc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class MaterialPointArcTween extends Tween<Offset> {
4848
final Offset begin = this.begin!;
4949
final Offset end = this.end!;
5050

51-
// An explanation with a diagram can be found at https://goo.gl/vMSdRg
51+
// An explanation with a diagram can be found at https://docs.google.com/document/d/1kF7vhX_RpQCIjQYT6lZdLFs4Dl6hHxoXNkTQfzyHNlw/
5252
final Offset delta = end - begin;
5353
final double deltaX = delta.dx.abs();
5454
final double deltaY = delta.dy.abs();

packages/flutter/lib/src/painting/notched_shapes.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class CircularNotchedRectangle extends NotchedShape {
8282
// Segment C - a Bezier curve from segment B back to the host's top edge.
8383
//
8484
// A detailed explanation and the derivation of the formulas below is
85-
// available at: https://goo.gl/Ufzrqn
85+
// available at: https://docs.google.com/document/d/e/2PACX-1vRVPWGtR85bawGynRSWzYTKgQtqrxCnxXCKC5xM9ab3IvtRHueku4rRIuJ4TbedzyMz2oy2pkzM71-_/pub
8686

8787
const double s1 = 15.0;
8888
const double s2 = 1.0;

packages/flutter_tools/lib/src/android/gradle.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ class AndroidGradleBuilder implements AndroidBuilder {
310310
);
311311
_logger.printStatus(
312312
'To avoid potential build failures, you can quickly migrate your app '
313-
'by following the steps on https://goo.gl/CP92wY .',
313+
'by following the steps on https://docs.flutter.dev/release/breaking-changes/androidx-migration .',
314314
indent: 4,
315315
);
316316
}

packages/flutter_tools/test/commands.shard/permeable/build_apk_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ void main() {
738738
containsIgnoringWhitespace("Your app isn't using AndroidX"),
739739
containsIgnoringWhitespace(
740740
'To avoid potential build failures, you can quickly migrate your app by '
741-
'following the steps on https://goo.gl/CP92wY',
741+
'following the steps on https://docs.flutter.dev/release/breaking-changes/androidx-migration',
742742
),
743743
),
744744
);

packages/flutter_tools/test/commands.shard/permeable/build_appbundle_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ void main() {
292292
testLogger.statusText,
293293
containsIgnoringWhitespace(
294294
'To avoid potential build failures, you can quickly migrate your app by '
295-
'following the steps on https://goo.gl/CP92wY',
295+
'following the steps on https://docs.flutter.dev/release/breaking-changes/androidx-migration',
296296
),
297297
);
298298

0 commit comments

Comments
 (0)