Skip to content

Commit 8a799b1

Browse files
committed
Add links to Patreon
1 parent 05889e0 commit 8a799b1

File tree

6 files changed

+24
-2
lines changed

6 files changed

+24
-2
lines changed

1-0-java-basics/1-3-1-crazy-generics/src/main/java/com/bobocode/basics/CrazyGenerics.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,14 @@
1414
* {@link CrazyGenerics} is an exercise class. It consists of classes, interfaces and methods that should be updated
1515
* using generics.
1616
* <p>
17-
* todo: go step by step from top to bottom. Read the java doc, write code and run CrazyGenericsTest to verify your impl
17+
* TODO: go step by step from top to bottom. Read the java doc, write code and run CrazyGenericsTest to verify your impl
1818
* <p>
1919
* Hint: in some cases you will need to refactor the code, like replace {@link Object} with a generic type. In order
2020
* cases you will need to add new fields, create new classes, or add new methods. Always try to read java doc and update
2121
* the code according to it.
22+
* <p>
23+
* TODO: if you find this exercise valuable and you want to get more like it, <a href="https://www.patreon.com/bobocode">
24+
* please support us on Patreon</a>
2225
*
2326
* @author Taras Boychuk
2427
*/

5-0-functional-programming/5-0-1-lambda-functions-map/src/main/java/com/bobocode/fp/Functions.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,17 @@
44
* An util class that provides a factory method for creating an instance of a {@link FunctionMap} filled with a list
55
* of functions.
66
* <p>
7-
* todo: implement a method and verify it by running {@link FunctionsTest}
7+
* TODO: implement a method and verify it by running {@link FunctionsTest}
8+
* <p>
9+
* TODO: if you find this exercise valuable and you want to get more like it, <a href="https://www.patreon.com/bobocode">
10+
* please support us on Patreon</a>
811
*
912
* @author Taras Boychuk
1013
*/
1114
public class Functions {
15+
private Functions() {
16+
}
17+
1218
/**
1319
* A static factory method that creates an integer function map with basic functions:
1420
* - abs (absolute value)

5-0-functional-programming/5-1-1-crazy-lambdas/src/main/java/com/bobocode/fp/CrazyLambdas.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
* {@link ExerciseNotCompletedException}.
1313
* <p>
1414
* TODO: remove exception and implement each method of this class using lambda or method reference
15+
* <p>
16+
* TODO: if you find this exercise valuable and you want to get more like it,
17+
* <a href="https://www.patreon.com/bobocode">please support us on Patreon</a>
1518
*
1619
* @author Taras Boychuk
1720
*/

5-0-functional-programming/5-2-1-crazy-streams/src/main/java/com/bobocode/fp/CrazyStreams.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
* {@link ExerciseNotCompletedException}.
1515
* <p>
1616
* TODO: remove exception throwing and implement each method using Stream API
17+
* <p>
18+
* TODO: if you find this exercise valuable and you want to get more like it, <a href="https://www.patreon.com/bobocode">
19+
* please support us on Patreon</a>
1720
*
1821
* @author Taras Boychuk
1922
*/

5-0-functional-programming/5-3-1-crazy-optionals/src/main/java/com/bobocode/fp/CrazyOptionals.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
* {@link ExerciseNotCompletedException}.
2323
* <p>
2424
* TODO: remove exception and implement each method of this class using Optional API
25+
* <p>
26+
* TODO: if you find this exercise valuable and you want to get more like it, <a href="https://www.patreon.com/bobocode">
27+
* please support us on Patreon</a>
2528
*
2629
* @author Taras Boychuk
2730
*/

5-0-functional-programming/5-4-1-fun-prime-numbers/src/main/java/com/bobocode/fp/PrimeNumbers.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
* {@link java.util.stream.IntStream} of prime numbers. That stream is used in all public methods on this class.
1313
* <p>
1414
* See {@link OOSumOfPrimes} for a reference
15+
* TODO: implement each method according to the javadoc and verify it by running {@link PrimeNumbersTest}
16+
* <p>
17+
* TODO: if you find this exercise valuable and you want to get more like it, <a href="https://www.patreon.com/bobocode">
18+
* please support us on Patreon</a>
1519
*
1620
* @author Taras Boychuk
1721
*/

0 commit comments

Comments
 (0)