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
69bcfc08
Commit
69bcfc08
authored
Dec 08, 2016
by
Todd Volkert
Committed by
GitHub
Dec 08, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor touch-ups in ProcessManager impls (#7196)
parent
622e4396
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
process_manager.dart
packages/flutter_tools/lib/src/base/process_manager.dart
+2
-2
No files found.
packages/flutter_tools/lib/src/base/process_manager.dart
View file @
69bcfc08
...
...
@@ -301,7 +301,7 @@ class RecordingProcessManager implements ProcessManager {
/// Returns a human-readable identifier for the specified executable.
String
_getBasename
(
int
pid
,
String
executable
,
List
<
String
>
arguments
)
{
String
index
=
new
NumberFormat
(
'000'
).
format
(
_manifest
.
length
-
1
);
String
index
=
new
NumberFormat
(
'000'
).
format
(
_manifest
.
length
);
String
identifier
=
path
.
basename
(
executable
);
if
(
_kSkippableExecutables
.
contains
(
identifier
)
&&
arguments
!=
null
...
...
@@ -674,7 +674,7 @@ class ReplayProcessManager implements ProcessManager {
);
if
(
entry
==
null
)
throw
new
StateError
(
'No matching invocation found for
$executable
'
);
throw
new
ProcessException
(
executable
,
arguments
,
'No matching invocation found
'
);
entry
[
'invoked'
]
=
true
;
return
entry
;
...
...
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