| Index: pkg/microlytics/example/simple.dart
|
| diff --git a/pkg/microlytics/example/simple.dart b/pkg/microlytics/example/simple.dart
|
| index b0b6792fc3b1b5387b996e88a21576d126fd01ff..42b323e2114e5ce6452707e50fba583c8baacbf2 100644
|
| --- a/pkg/microlytics/example/simple.dart
|
| +++ b/pkg/microlytics/example/simple.dart
|
| @@ -8,8 +8,8 @@ import 'package:microlytics/microlytics.dart';
|
|
|
| void main(List<String> arguments) {
|
| // Create the channel that will be used to communicate to analytics.
|
| - var channel = new RateLimitingBufferedChannel(
|
| - new HttpClientChannel(), packetsPerSecond: 1.0);
|
| + var channel = new RateLimitingBufferedChannel(new HttpClientChannel(),
|
| + packetsPerSecond: 1.0);
|
|
|
| if (arguments.length != 1) {
|
| print("usage: dart simple.dart GA-Client-ID");
|
| @@ -23,4 +23,4 @@ void main(List<String> arguments) {
|
| // Send some messages.
|
| lg.logAnonymousEvent("hello", "world");
|
| lg.logAnonymousTiming("loader", "var", 42);
|
| -}
|
| +}
|
|
|