Skip to content

Commit 770dfc1

Browse files
author
Jim Laskey
committedMay 4, 2021
8265279: Remove unused RandomGeneratorFactory.all(Class<T> category)
Reviewed-by: rriggs
1 parent ee5bba0 commit 770dfc1

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed
 

‎src/java.base/share/classes/java/util/random/RandomGeneratorFactory.java

-25
Original file line numberDiff line numberDiff line change
@@ -370,31 +370,6 @@ public static RandomGeneratorFactory<RandomGenerator> getDefault() {
370370
return factoryOf("L32X64MixRandom", RandomGenerator.class);
371371
}
372372

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-
398373
/**
399374
* Returns a non-empty stream of available {@link RandomGeneratorFactory RandomGeneratorFactory(s)}.
400375
*

0 commit comments

Comments
 (0)
Please sign in to comment.