File tree 1 file changed +0
-25
lines changed
src/java.base/share/classes/java/util/random
1 file changed +0
-25
lines changed Original file line number Diff line number Diff line change @@ -370,31 +370,6 @@ public static RandomGeneratorFactory<RandomGenerator> getDefault() {
370
370
return factoryOf ("L32X64MixRandom" , RandomGenerator .class );
371
371
}
372
372
373
- /**
374
- * Returns a stream of matching Providers.
375
- *
376
- * @param category {@link RandomGenerator} sub-interface class to filter
377
- * @param <T> {@link RandomGenerator} sub-interface return type
378
- *
379
- * RandomGenerators that are marked as deprecated or are not properly configured are not included in the result.
380
- *
381
- * @implSpec Availability is determined by RandomGeneratorFactory using the service provider API
382
- * to locate implementations of the RandomGenerator interface.
383
- *
384
- * @return Stream of matching {@link RandomGeneratorFactory RandomGeneratorFactory(s)}.
385
- *
386
- * @hidden
387
- */
388
- public static <T extends RandomGenerator > Stream <RandomGeneratorFactory <T >> all (Class <T > category ) {
389
- Map <String , Provider <? extends RandomGenerator >> fm = getFactoryMap ();
390
- return fm .values ()
391
- .stream ()
392
- .filter (p -> isSubclass (category , p ) &&
393
- !p .type ().isAnnotationPresent (Deprecated .class ) &&
394
- p .type ().isAnnotationPresent (RandomGeneratorProperties .class ))
395
- .map (RandomGeneratorFactory ::new );
396
- }
397
-
398
373
/**
399
374
* Returns a non-empty stream of available {@link RandomGeneratorFactory RandomGeneratorFactory(s)}.
400
375
*
You can’t perform that action at this time.
0 commit comments