Remove lombok dependency

This commit is contained in:
Ilkka Seppälä 2020-03-25 20:51:23 +02:00
parent 67edeb806d
commit 37a34ae174
2 changed files with 4 additions and 9 deletions

View File

@ -47,13 +47,6 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.10</version>
</dependency>
</dependencies> </dependencies>
<build> <build>

View File

@ -23,7 +23,8 @@
package com.iluwatar.trampoline; package com.iluwatar.trampoline;
import lombok.extern.slf4j.Slf4j; import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** /**
* Trampoline pattern allows to define recursive algorithms by iterative loop. * Trampoline pattern allows to define recursive algorithms by iterative loop.
@ -32,9 +33,10 @@ import lombok.extern.slf4j.Slf4j;
* and to interleave the execution of functions without hard coding them together or even using * and to interleave the execution of functions without hard coding them together or even using
* threads. * threads.
*/ */
@Slf4j
public class TrampolineApp { public class TrampolineApp {
private static final Logger log = LoggerFactory.getLogger(TrampolineApp.class);
/** /**
* Main program for showing pattern. It does loop with factorial function. * Main program for showing pattern. It does loop with factorial function.
*/ */