Skip to content

Commit d81153c

Browse files
authored
JAVA-2108: Move Introduction to Protonpack to the libraries-6 (eugenp#9673)
1 parent 942851f commit d81153c

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

core-java-modules/core-java-streams/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ This module contains articles about the Stream API in Java.
99
- [Iterable to Stream in Java](https://www.baeldung.com/java-iterable-to-stream)
1010
- [How to Iterate Over a Stream With Indices](https://www.baeldung.com/java-stream-indices)
1111
- [Stream Ordering in Java](https://www.baeldung.com/java-stream-ordering)
12-
- [Introduction to Protonpack](https://www.baeldung.com/java-protonpack)
1312
- [Java Stream Filter with Lambda Expression](https://www.baeldung.com/java-stream-filter-lambda)
1413
- [Counting Matches on a Stream Filter](https://www.baeldung.com/java-stream-filter-count)
1514
- [Summing Numbers with Java Streams](https://www.baeldung.com/java-stream-sum)

libraries-6/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ Remember, for advanced libraries like [Jackson](/jackson) and [JUnit](/testing-m
1414
- [Introduction to Functional Java](https://www.baeldung.com/java-functional-library)
1515
- [A Guide to the Reflections Library](https://www.baeldung.com/reflections-library)
1616
- [Exactly Once Processing in Kafka](https://www.baeldung.com/kafka-exactly-once)
17+
- [Introduction to Protonpack](https://www.baeldung.com/java-protonpack)
1718
- More articles [[<-- prev]](/libraries-5)

core-java-modules/core-java-streams/src/test/java/com/baeldung/protonpack/ProtonpackUnitTest.java libraries-6/src/test/java/com/baeldung/protonpack/ProtonpackUnitTest.java

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
import java.util.List;
1111
import java.util.Optional;
1212
import java.util.Set;
13-
import java.util.concurrent.atomic.AtomicInteger;
14-
import java.util.function.Function;
1513
import java.util.stream.Collectors;
1614
import java.util.stream.Stream;
1715

0 commit comments

Comments
 (0)