Remove lombok dependency
This commit is contained in:
parent
67edeb806d
commit
37a34ae174
@ -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>
|
||||||
|
@ -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.
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user