Skip to content

Commit 37a34ae

Browse files
committed
Remove lombok dependency
1 parent 67edeb8 commit 37a34ae

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

trampoline/pom.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,6 @@
4747
<scope>test</scope>
4848
</dependency>
4949

50-
<dependency>
51-
<groupId>org.projectlombok</groupId>
52-
<artifactId>lombok</artifactId>
53-
<version>1.18.10</version>
54-
</dependency>
55-
56-
5750
</dependencies>
5851

5952
<build>

trampoline/src/main/java/com/iluwatar/trampoline/TrampolineApp.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323

2424
package com.iluwatar.trampoline;
2525

26-
import lombok.extern.slf4j.Slf4j;
26+
import org.slf4j.Logger;
27+
import org.slf4j.LoggerFactory;
2728

2829
/**
2930
* Trampoline pattern allows to define recursive algorithms by iterative loop.
@@ -32,9 +33,10 @@
3233
* and to interleave the execution of functions without hard coding them together or even using
3334
* threads.
3435
*/
35-
@Slf4j
3636
public class TrampolineApp {
3737

38+
private static final Logger log = LoggerFactory.getLogger(TrampolineApp.class);
39+
3840
/**
3941
* Main program for showing pattern. It does loop with factorial function.
4042
*/

0 commit comments

Comments
 (0)