Skip to content

Commit b9528c0

Browse files
authored
Remove trailing spaces in repo (#101191)
* Remove trailing spaces * more * empty commit
1 parent 5077067 commit b9528c0

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

dev/docs/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
**Welcome to the Flutter API reference documentation!**
22

3-
Flutter is Google's SDK for crafting beautiful, fast user experiences for
3+
Flutter is Google's SDK for crafting beautiful, fast user experiences for
44
mobile, web, and desktop from a single codebase. Flutter works with existing
55
code, is used by developers and organizations around the world, and is free
66
and open source.
@@ -57,8 +57,8 @@ import 'package:file/local.dart';
5757
### Packages on pub.dev
5858

5959
Flutter has a rich ecosystem of packages that have been contributed by the
60-
Flutter team and the broader open source community to a central repository.
61-
Among the thousands of packages, you'll find support for Firebase, Google
60+
Flutter team and the broader open source community to a central repository.
61+
Among the thousands of packages, you'll find support for Firebase, Google
6262
Fonts, hardware services like Bluetooth and camera, new widgets and
6363
animations, and integration with other popular web services. You can browse
6464
those packages at [pub.dev](https://pub.dev).

packages/flutter_tools/gradle/flutter.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ class FlutterPlugin implements Plugin<Project> {
426426

427427
/**
428428
* Compares semantic versions ignoring labels.
429-
*
429+
*
430430
* If the versions are equal (ignoring labels), returns one of the two strings arbitrarily.
431431
*
432432
* If minor or patch are omitted (non-conformant to semantic versioning), they are considered zero.
@@ -484,7 +484,7 @@ class FlutterPlugin implements Plugin<Project> {
484484
}
485485
}
486486
}
487-
}
487+
}
488488
}
489489

490490
/**

packages/flutter_tools/templates/app_shared/android-java.tmpl/app/build.gradle.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ android {
3737
defaultConfig {
3838
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
3939
applicationId "{{androidIdentifier}}"
40-
// You can update the following values to match your application needs.
40+
// You can update the following values to match your application needs.
4141
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
4242
minSdkVersion flutter.minSdkVersion
4343
targetSdkVersion flutter.targetSdkVersion

packages/flutter_tools/templates/package/README.md.tmpl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
<!--
1+
<!--
22
This README describes the package. If you publish this package to pub.dev,
33
this README's contents appear on the landing page for your package.
44

55
For information about how to write a good package README, see the guide for
6-
[writing package pages](https://dart.dev/guides/libraries/writing-package-pages).
6+
[writing package pages](https://dart.dev/guides/libraries/writing-package-pages).
77

88
For general information about developing packages, see the Dart guide for
99
[creating packages](https://dart.dev/guides/libraries/create-library-packages)
1010
and the Flutter guide for
11-
[developing packages and plugins](https://flutter.dev/developing-packages).
11+
[developing packages and plugins](https://flutter.dev/developing-packages).
1212
-->
1313

1414
TODO: Put a short description of the package here that helps potential users
@@ -26,14 +26,14 @@ start using the package.
2626
## Usage
2727

2828
TODO: Include short and useful examples for package users. Add longer examples
29-
to `/example` folder.
29+
to `/example` folder.
3030

3131
```dart
3232
const like = 'sample';
3333
```
3434

3535
## Additional information
3636

37-
TODO: Tell users more about the package: where to find more information, how to
38-
contribute to the package, how to file issues, what response they can expect
37+
TODO: Tell users more about the package: where to find more information, how to
38+
contribute to the package, how to file issues, what response they can expect
3939
from the package authors, and more.

packages/flutter_tools/templates/plugin/lib/projectName_platform_interface.dart.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ abstract class {{pluginDartClass}}Platform extends PlatformInterface {
1414
///
1515
/// Defaults to [MethodChannel{{pluginDartClass}}].
1616
static {{pluginDartClass}}Platform get instance => _instance;
17-
17+
1818
/// Platform-specific implementations should set this with their own
1919
/// platform-specific class that extends [{{pluginDartClass}}Platform] when
2020
/// they register themselves.

packages/flutter_tools/templates/plugin/test/projectName_test.dart.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import 'package:{{projectName}}/{{projectName}}_platform_interface.dart';
44
import 'package:{{projectName}}/{{projectName}}_method_channel.dart';
55
import 'package:plugin_platform_interface/plugin_platform_interface.dart';
66

7-
class Mock{{pluginDartClass}}Platform
7+
class Mock{{pluginDartClass}}Platform
88
with MockPlatformInterfaceMixin
99
implements {{pluginDartClass}}Platform {
1010

@@ -23,7 +23,7 @@ void main() {
2323
{{pluginDartClass}} {{pluginClassLowerCamelCase}} = {{pluginDartClass}}();
2424
Mock{{pluginDartClass}}Platform fakePlatform = Mock{{pluginDartClass}}Platform();
2525
{{pluginDartClass}}Platform.instance = fakePlatform;
26-
26+
2727
expect(await {{pluginClassLowerCamelCase}}.getPlatformVersion(), '42');
2828
});
2929
}

packages/flutter_tools/templates/plugin_ffi/README.md.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Getting Started
66

7-
This project is a starting point for a Flutter
7+
This project is a starting point for a Flutter
88
[FFI plugin](https://docs.flutter.dev/development/platform-integration/c-interop),
99
a specialized package that includes native code directly invoked with Dart FFI.
1010

0 commit comments

Comments
 (0)