Skip to content

Commit cd329eb

Browse files
committed
Merge branch 'main' into completed
2 parents 88e17bf + 0c98b50 commit cd329eb

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* cases you will need to add new fields, create new classes, or add new methods. Always try to read java doc and update
1919
* the code according to it.
2020
* <p><p>
21-
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
21+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com">visit our website</a></strong>
2222
* <p>
2323
*
2424
* @author Taras Boychuk

1-0-java-basics/1-3-2-heterogeneous-max-holder/src/main/java/com/bobocode/basics/HeterogeneousMaxHolder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* It's based on the {@link Map} and provides an API that allows to put a value by type, and get a max value by type.
1414
* <p>
1515
* <p>
16-
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
16+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com">visit our website</a></strong>
1717
* <p>
1818
*
1919
* @author Taras Boychuk

2-0-data-structures-and-algorithms/2-2-1-node/src/main/java/com/bobobode/cs/Nodes.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* A class that consists of static methods only and provides util methods for {@link Node}.
55
* <p><p>
6-
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
6+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com">visit our website</a></strong>
77
* <p>
88
*
99
* @author Taras Boychuk

2-0-data-structures-and-algorithms/2-2-2-stack/src/main/java/com/bobocode/cs/LinkedStack.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* {@link LinkedStack} is a stack implementation that is based on singly linked generic nodes.
99
* A node is implemented as inner static class {@link Node<T>}.
1010
* <p><p>
11-
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
11+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com">visit our website</a></strong>
1212
* <p>
1313
*
1414
* @param <T> generic type parameter

2-0-data-structures-and-algorithms/2-2-3-linked-queue/src/main/java/com/bobocode/cs/LinkedQueue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* class Node. In order to perform operations {@link LinkedQueue#add(Object)} and {@link LinkedQueue#poll()}
66
* in a constant time, it keeps to references to the head and tail of the queue.
77
* <p><p>
8-
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
8+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com">visit our website</a></strong>
99
* <p>
1010
*
1111
* @param <T> a generic parameter

2-0-data-structures-and-algorithms/2-2-4-linked-list/src/main/java/com/bobocode/cs/LinkedList.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* {@link LinkedList} is a list implementation that is based on singly linked generic nodes. A node is implemented as
99
* inner static class {@link Node<T>}.
1010
* <p><p>
11-
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
11+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com">visit our website</a></strong>
1212
* <p>
1313
*
1414
* @param <T> generic type parameter

2-0-data-structures-and-algorithms/2-2-5-array-list/src/main/java/com/bobocode/cs/ArrayList.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* {@link ArrayList} is an implementation of {@link List} interface. This resizable data structure
99
* based on an array and is simplified version of {@link java.util.ArrayList}.
1010
* <p><p>
11-
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
11+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com">visit our website</a></strong>
1212
* <p>
1313
*
1414
* @author Serhii Hryhus

2-0-data-structures-and-algorithms/2-2-6-binary-search-tree/src/main/java/com/bobocode/cs/RecursiveBinarySearchTree.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* and recursion. A tree node is represented as a nested class {@link Node}. It holds an element (a value) and
1010
* two references to the left and right child nodes.
1111
* <p><p>
12-
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
12+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com">visit our website</a></strong>
1313
* <p>
1414
*
1515
* @param <T> a type of elements that are stored in the tree

2-0-data-structures-and-algorithms/2-2-9-hash-table/src/main/java/com/bobocode/cs/HashTable.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* <p>
2222
* The initial array size (initial capacity) is 8.
2323
* <p><p>
24-
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
24+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com">visit our website</a></strong>
2525
* <p>
2626
*
2727
* @param <K> key type

3-0-java-core/3-6-4-random-field-comparator/src/main/java/com/bobocode/se/RandomFieldComparator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* @param <T> the type of the objects that may be compared by this comparator
1818
*<p><p>
19-
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
19+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com">visit our website</a></strong>
2020
* <p>
2121
*
2222
* @author Stanislav Zabramnyi

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* <p>
1616
* TODO: remove exception and implement each method of this class using lambda or method reference
1717
* <p><p>
18-
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
18+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com">visit our website</a></strong>
1919
* <p>
2020
*
2121
* @author Taras Boychuk

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* <p>
2222
* TODO: remove exception throwing and implement each method using Stream API
2323
* <p><p>
24-
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
24+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com">visit our website</a></strong>
2525
* <p>
2626
*
2727
* @author Taras Boychuk

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* <p>
2626
* TODO: remove exception and implement each method of this class using Optional API
2727
* <p><p>
28-
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
28+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com">visit our website</a></strong>
2929
* <p>
3030
*
3131
* @author Taras Boychuk

0 commit comments

Comments
 (0)