| Index: pkg/analysis_server/lib/plugin/protocol/protocol.dart
|
| diff --git a/pkg/analysis_server/lib/plugin/protocol/protocol.dart b/pkg/analysis_server/lib/plugin/protocol/protocol.dart
|
| index 032e4f96b3e5b93ae70df088dbe53014993ecfa9..92ef921bc592a571466d8e094fe3314c111075c6 100644
|
| --- a/pkg/analysis_server/lib/plugin/protocol/protocol.dart
|
| +++ b/pkg/analysis_server/lib/plugin/protocol/protocol.dart
|
| @@ -160,7 +160,7 @@ class Request {
|
| */
|
| Request(this.id, this.method,
|
| [Map<String, Object> params, this.clientRequestTime])
|
| - : _params = params != null ? params : new HashMap<String, Object>();
|
| + : _params = params ?? new HashMap<String, Object>();
|
|
|
| /**
|
| * Return a request parsed from the given json, or `null` if the [data] is
|
|
|