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
7a338886
Commit
7a338886
authored
Apr 18, 2018
by
Danny Tuppeny
Committed by
Danny Tuppeny
May 09, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tidy up
parent
5793a3c3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
7 deletions
+3
-7
android_emulator.dart
packages/flutter_tools/lib/src/android/android_emulator.dart
+0
-1
android_sdk.dart
packages/flutter_tools/lib/src/android/android_sdk.dart
+0
-2
ios_emulators.dart
packages/flutter_tools/lib/src/ios/ios_emulators.dart
+3
-4
No files found.
packages/flutter_tools/lib/src/android/android_emulator.dart
View file @
7a338886
...
...
@@ -9,7 +9,6 @@ import 'package:meta/meta.dart';
import
'../android/android_sdk.dart'
;
import
'../android/android_workflow.dart'
;
import
'../base/file_system.dart'
;
import
'../base/logger.dart'
;
import
'../base/process.dart'
;
import
'../emulator.dart'
;
import
'../globals.dart'
;
...
...
packages/flutter_tools/lib/src/android/android_sdk.dart
View file @
7a338886
...
...
@@ -98,8 +98,6 @@ String getAvdPath() {
}
}
print
(
searchPaths
);
return
searchPaths
.
where
((
String
p
)
=>
p
!=
null
).
firstWhere
(
(
String
p
)
=>
fs
.
directory
(
p
).
existsSync
(),
orElse:
()
=>
null
,
...
...
packages/flutter_tools/lib/src/ios/ios_emulators.dart
View file @
7a338886
...
...
@@ -5,7 +5,6 @@
import
'dart:async'
;
import
'../base/file_system.dart'
;
import
'../base/logger.dart'
;
import
'../base/platform.dart'
;
import
'../base/process.dart'
;
import
'../emulator.dart'
;
...
...
@@ -68,7 +67,7 @@ String getSimulatorPath() {
'/Applications/Xcode.app/Contents/Developer/Applications/Simulator.app'
,
];
return
searchPaths
.
where
((
String
p
)
=>
p
!=
null
).
firstWhere
(
(
String
p
)
=>
fs
.
directory
(
p
).
existsSync
(),
orElse:
()
=>
null
,
);
(
String
p
)
=>
fs
.
directory
(
p
).
existsSync
(),
orElse:
()
=>
null
,
);
}
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