File tree 2 files changed +4
-9
lines changed
src/main/java/com/iluwatar/trampoline
2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 47
47
<scope >test</scope >
48
48
</dependency >
49
49
50
- <dependency >
51
- <groupId >org.projectlombok</groupId >
52
- <artifactId >lombok</artifactId >
53
- <version >1.18.10</version >
54
- </dependency >
55
-
56
-
57
50
</dependencies >
58
51
59
52
<build >
Original file line number Diff line number Diff line change 23
23
24
24
package com .iluwatar .trampoline ;
25
25
26
- import lombok .extern .slf4j .Slf4j ;
26
+ import org .slf4j .Logger ;
27
+ import org .slf4j .LoggerFactory ;
27
28
28
29
/**
29
30
* Trampoline pattern allows to define recursive algorithms by iterative loop.
32
33
* and to interleave the execution of functions without hard coding them together or even using
33
34
* threads.
34
35
*/
35
- @ Slf4j
36
36
public class TrampolineApp {
37
37
38
+ private static final Logger log = LoggerFactory .getLogger (TrampolineApp .class );
39
+
38
40
/**
39
41
* Main program for showing pattern. It does loop with factorial function.
40
42
*/
You can’t perform that action at this time.
0 commit comments