Skip to content

Commit 3419ff7

Browse files
author
Andrey Turbanov
committedJan 20, 2022
8277535: Remove redundant Stream.distinct()/sorted() steps
Reviewed-by: prappo
1 parent d48279b commit 3419ff7

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed
 

‎src/java.base/share/classes/jdk/internal/module/ModulePath.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2014, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -527,7 +527,6 @@ private ModuleDescriptor deriveModuleDescriptor(JarFile jf)
527527
Set<String> packages = classFiles.stream()
528528
.map(this::toPackageName)
529529
.flatMap(Optional::stream)
530-
.distinct()
531530
.collect(Collectors.toSet());
532531

533532
// all packages are exported and open

‎src/jdk.jdeps/share/classes/com/sun/tools/jdeps/ModuleDotGraph.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -65,7 +65,6 @@ public ModuleDotGraph(JdepsConfiguration config, boolean apiOnly) {
6565
this(config,
6666
config.rootModules().stream()
6767
.map(Module::name)
68-
.sorted()
6968
.collect(toMap(Function.identity(), mn -> config.resolve(Set.of(mn)))),
7069
apiOnly);
7170
}

‎src/jdk.jlink/share/classes/jdk/tools/jmod/JmodTask.java

-2
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,6 @@ Set<String> findPackages(Path dir) {
690690
.filter(path -> isResource(path.toString()))
691691
.map(path -> toPackageName(path))
692692
.filter(pkg -> pkg.length() > 0)
693-
.distinct()
694693
.collect(Collectors.toSet());
695694
} catch (IOException ioe) {
696695
throw new UncheckedIOException(ioe);
@@ -705,7 +704,6 @@ Set<String> findPackages(JarFile jf) {
705704
.filter(e -> !e.isDirectory() && isResource(e.getName()))
706705
.map(e -> toPackageName(e))
707706
.filter(pkg -> pkg.length() > 0)
708-
.distinct()
709707
.collect(Collectors.toSet());
710708
}
711709

0 commit comments

Comments
 (0)
Please sign in to comment.