| Index: test/generated_sdk/lib/math/random.dart
|
| diff --git a/test/generated_sdk/lib/math/random.dart b/test/generated_sdk/lib/math/random.dart
|
| index f4084c78770a58a10debc639c31825a4cc3654b9..13654cdcfe4957a4f81e0dd270a17012de83059a 100644
|
| --- a/test/generated_sdk/lib/math/random.dart
|
| +++ b/test/generated_sdk/lib/math/random.dart
|
| @@ -11,7 +11,11 @@ part of dart.math;
|
| * pseudo-random bits that are not suitable for cryptographic purposes.
|
| */
|
| abstract class Random {
|
| - @patch
|
| + /**
|
| + * Creates a random-number generator. The optional parameter [seed] is used
|
| + * to initialize the internal state of the generator. The implementation of
|
| + * the random stream can change between releases of the library.
|
| + */
|
| factory Random([int seed]) =>
|
| (seed == null) ? const _JSRandom() : new _Random(seed);
|
|
|
|
|