Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit37a34ae

Browse files
committed
Remove lombok dependency
1 parent67edeb8 commit37a34ae

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
packagecom.iluwatar.trampoline;
2525

26-
importlombok.extern.slf4j.Slf4j;
26+
importorg.slf4j.Logger;
27+
importorg.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
publicclassTrampolineApp {
3737

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

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp