Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
2c998d8b
Unverified
Commit
2c998d8b
authored
Jun 10, 2021
by
Alexandre Ardhuin
Committed by
GitHub
Jun 10, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix indentation of class members (#84293)
parent
04933efb
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
15 deletions
+16
-15
devices.dart
dev/devicelab/lib/framework/devices.dart
+3
-3
task_result.dart
dev/devicelab/lib/framework/task_result.dart
+2
-2
scale.dart
packages/flutter/lib/src/gestures/scale.dart
+5
-5
device_test.dart
packages/flutter_tools/test/general.shard/device_test.dart
+2
-1
flutter_validator_test.dart
...tter_tools/test/general.shard/flutter_validator_test.dart
+4
-4
No files found.
dev/devicelab/lib/framework/devices.dart
View file @
2c998d8b
...
...
@@ -344,15 +344,15 @@ class FuchsiaDeviceDiscovery implements DeviceDiscovery {
static
FuchsiaDeviceDiscovery
_instance
;
FuchsiaDevice
_workingDevice
;
FuchsiaDevice
_workingDevice
;
String
get
_ffx
{
String
get
_ffx
{
final
String
ffx
=
path
.
join
(
getArtifactPath
(),
'fuchsia'
,
'tools'
,
'x64'
,
'ffx'
);
if
(!
File
(
ffx
).
existsSync
())
{
throw
FileSystemException
(
"Couldn't find ffx at location
$ffx
"
);
}
return
ffx
;
}
}
@override
Future
<
FuchsiaDevice
>
get
workingDevice
async
{
...
...
dev/devicelab/lib/framework/task_result.dart
View file @
2c998d8b
...
...
@@ -9,8 +9,8 @@ import 'dart:io';
/// A result of running a single task.
class
TaskResult
{
TaskResult
.
buildOnly
()
:
succeeded
=
true
,
TaskResult
.
buildOnly
()
:
succeeded
=
true
,
data
=
null
,
detailFiles
=
null
,
benchmarkScoreKeys
=
null
,
...
...
packages/flutter/lib/src/gestures/scale.dart
View file @
2c998d8b
...
...
@@ -60,11 +60,11 @@ class ScaleStartDetails {
/// coordinates.
final
Offset
localFocalPoint
;
/// The number of pointers being tracked by the gesture recognizer.
///
/// Typically this is the number of fingers being used to pan the widget using the gesture
/// recognizer.
final
int
pointerCount
;
/// The number of pointers being tracked by the gesture recognizer.
///
/// Typically this is the number of fingers being used to pan the widget using the gesture
/// recognizer.
final
int
pointerCount
;
@override
String
toString
()
=>
'ScaleStartDetails(focalPoint:
$focalPoint
, localFocalPoint:
$localFocalPoint
, pointersCount:
$pointerCount
)'
;
...
...
packages/flutter_tools/test/general.shard/device_test.dart
View file @
2c998d8b
...
...
@@ -462,7 +462,8 @@ void main() {
}
class
TestDeviceManager
extends
DeviceManager
{
TestDeviceManager
(
List
<
Device
>
allDevices
,
{
TestDeviceManager
(
List
<
Device
>
allDevices
,
{
List
<
DeviceDiscovery
>
deviceDiscoveryOverrides
,
@required
Logger
logger
,
@required
Terminal
terminal
,
...
...
packages/flutter_tools/test/general.shard/flutter_validator_test.dart
View file @
2c998d8b
...
...
@@ -236,8 +236,8 @@ class FakeOperatingSystemUtils extends Fake implements OperatingSystemUtils {
}
class
FakeThrowingFlutterVersion
extends
FakeFlutterVersion
{
@override
String
get
frameworkCommitDate
{
throw
VersionCheckError
(
'version error'
);
}
@override
String
get
frameworkCommitDate
{
throw
VersionCheckError
(
'version error'
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment