| Index: pkg/analysis_server/lib/src/computer/computer_outline.dart
|
| diff --git a/pkg/analysis_server/lib/src/computer/computer_outline.dart b/pkg/analysis_server/lib/src/computer/computer_outline.dart
|
| index bb1604777d2738d4d174a2bbad7a7e2104022417..03d8a898f5b672263d8317ad2ac13d6fd751b849 100644
|
| --- a/pkg/analysis_server/lib/src/computer/computer_outline.dart
|
| +++ b/pkg/analysis_server/lib/src/computer/computer_outline.dart
|
| @@ -298,7 +298,7 @@ class DartUnitOutlineComputer {
|
| kind = ElementKind.METHOD;
|
| }
|
| _SourceRegion sourceRegion = _getSourceRegion(method);
|
| - String parametersStr = parameters != null ? parameters.toSource() : '';
|
| + String parametersStr = parameters != null ? parameters.toSource() : null;
|
| String returnTypeStr = returnType != null ? returnType.toSource() : '';
|
| Element element = new Element(
|
| kind,
|
|
|